QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#778375 | #5414. Stop, Yesterday Please No More | ShallowMaple | WA | 8ms | 3904kb | C++14 | 2.1kb | 2024-11-24 14:19:49 | 2024-11-24 14:19:49 |
Judging History
answer
#include<bits/stdc++.h>
#define endl '\n'
#define int long long
using namespace std;
typedef long long ll;
typedef pair<int, int> PII;
typedef pair<ll, ll> PLL;
const int N = 2e5 + 5;
int n, m, k, x, y, T;
void add(int x1, int y1, int x2, int y2, int c, vector<vector<int>> &b){
b[x1][y1] += c;
b[x2+1][y1] -= c;
b[x1][y2+1] -= c;
b[x2+1][y2+1] += c;
}
void solve()
{
cin >> n >> m >> k;
vector<vector<int>> g(n + 10, vector<int>(m + 10));
vector<vector<int>> b(n + 10, vector<int>(m + 10));
vector<vector<bool>> vis(n + 10, vector<bool>(m + 10));
string s; cin >> s;
//所有袋鼠都向上移动一步,相当于上下边界向下移动一步;所有袋鼠都向左移动一步,相当于左右边界向右移动一步。
int U = 1, D = n, L = 1, R = m; //以左上角为(1,1)作一个n*m的矩阵
for (int i = 0, u = 1, d = n, l = 1, r = m; i < s.size(); i++) {
if (s[i] == 'U') u++, d++;
else if (s[i] == 'D') u--, d--;
else if (s[i] == 'L') l++, r++;
else l--, r--;
U = max(U, u), D = min(D, d), L = max(L, l), R = min(R, r);
}
if (U > D || R < L){
if(k == 0){
cout << n * m << endl;
} else{
cout << 0 << endl;
}
return;
}
int need_to_die = (D - U + 1) * (R - L + 1) - k;
if (need_to_die <= 0){
cout << 0 << endl; return;
}
add(U, L, D, R, 1, b);
vis[U][L] = 1; //表示袋鼠矩形已经走过了以(U,L)为左上角的矩形区域
for(int i = 0, x1 = U, y1 = L, x2 = D, y2 = R; i < s.size(); i ++){
if(s[i] == 'U') x1 --, x2 --;
else if(s[i] == 'D') x1 ++, x2 ++;
else if(s[i] == 'L') y1 --, y2 --;
else y1 ++, y2 ++;
if(vis[x1][y1]) continue; //防止重复计算
else vis[x1][y1] = 1, add(x1, y1, x2, y2, 1, b);
}
int ans = 0;
vector<vector<int>> sum(n + 10, vector<int>(m + 10));
for(int i = 1; i <= n; i ++)
for(int j = 1; j <= m; j ++){
sum[i][j] = sum[i-1][j] + sum[i][j-1] - sum[i-1][j-1] + b[i][j];
if(sum[i][j] == need_to_die) ans ++;
}
cout << ans << endl;
}
signed main()
{
ios::sync_with_stdio(false), cin.tie(0);
cin >> T;
while(T--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3516kb
input:
3 4 5 3 ULDDRR 4 5 0 UUUUUUU 4 5 10 UUUUUUU
output:
2 20 0
result:
ok 3 number(s): "2 20 0"
Test #2:
score: -100
Wrong Answer
time: 8ms
memory: 3904kb
input:
1060 19 12 0 UDLDDUUUUDDDLLRDUDUURULUUUDRDUDRDRLRLRLULULLLDLDDRLUUUURUUUDDRLLRUUUDULURUULLRDRLRDDURDUUURRRLURLRUULRRUDURDLUUURDLURDDLUUURDDRLLURRDLRUDLRDRLLRRDRDDLDRURRRLUDULLLRUUDLRRURRDLLRRRDLLRDDDLRLRURURDDDL 11 1 0 UR 3 18 33 UDRLR 17 11 132 RLDRDLDRUU 6 10 13 UULUDDLRDLUUDLDD 1 15 0 D 6 20 50 D...
output:
228 11 20 99 18 15 34 240 15 0 0 13 14 18 26 16 0 19 108 8 2 2 3 0 0 30 16 21 0 8 10 9 15 5 320 11 7 3 0 0 12 0 11 0 0 14 0 22 36 51 23 7 6 4 2 48 28 8 63 22 49 13 10 4 108 10 18 44 0 15 9 0 4 30 14 99 105 10 14 17 0 66 10 11 28 52 34 56 33 14 56 90 14 0 121 3 48 30 36 13 0 30 7 8 3 11 16 45 20 34 0...
result:
wrong answer 17th numbers differ - expected: '1', found: '0'