QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#183418 | #5414. Stop, Yesterday Please No More | Alfeh | WA | 0ms | 6116kb | C++14 | 2.1kb | 2023-09-19 14:57:33 | 2023-09-19 14:57:34 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
const int sz = 1e3 + 5, mod = 1e9 + 7;
int arr[sz][sz], brr[sz][sz];
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t = 1; cin >> t;
while(t--) {
int n, m, k; cin >> n >> m >> k;
int x = 0, y = 0;
int mnx, mny, mxx, mxy;
mnx = mny = mxx = mxy = 0;
string c; cin >> c;
for(char &cc:c) {
if(cc == 'U') x--;
if(cc == 'D') x++;
if(cc == 'L') y--;
if(cc == 'R') y++;
mnx = min(mnx, x);
mny = min(mny, y);
mxx = max(mxx, x);
mxy = max(mxy, y);
}
std::vector<int> ax = {mnx, mnx, mxx, mxx};
std::vector<int> bx = {mny, mxy, mny, mxy};
int mnx1, mny1, mxx1, mxy1;
mnx1 = mny1 = n + m;
mxx1 = mxy1 = 0;
auto is_valid = [&](int i, int j) {
for(int k = 0; k < 4; k++) {
int x = i + ax[k];
int y = j + bx[k];
if(x < 1 || x > n || y < 1 || y > m) return 0;
}
return 1;
};
//continue;
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= m; j++) {
if(is_valid(i, j)) {
mnx1 = min(mnx1, i);
mny1 = min(mny1, j);
mxx1 = max(mxx1, i);
mxy1 = max(mxy1, j);
}
}
}
//continue;
if(mnx1 <= mxx1) {
//cout << mnx1 << " " << mny1 << endl;
int x = mnx1, y = mny1;
int lenx = mxx1 - mnx1 + 1;
int leny = mxy1 - mny1 + 1;
auto add = [&](int i, int j) {
assert(i >= 0 && j >= 0);
arr[i][j]++;
arr[i][j + leny]--;
arr[i + lenx][j]--;
arr[i + lenx][j + leny]++;
};
add(x, y);
for(char &cc:c) {
if(cc == 'U') x--;
if(cc == 'D') x++;
if(cc == 'L') y--;
if(cc == 'R') y++;
add(x, y);
}
int ans = 0;
k = lenx * leny - k;
for(int i = 1; i <= n + 1; i++) {
for(int j = 1; j <= m + 1; j++) {
arr[i][j] += arr[i - 1][j];
brr[i][j] = brr[i][j - 1] + arr[i][j];
if(i <= n && j <= m)
ans += (brr[i][j] == k);
}
}
for(int i = 1; i <= n + 1; i++) {
for(int j = 1; j <= m + 1; j++) {
arr[i][j] = brr[i][j] = 0;
}
}
cout << ans << "\n";
} else cout << (!k) * (n * m) << "\n";
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 5684kb
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: 0ms
memory: 6116kb
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 17 9 18 15 21 240 14 0 0 5 1 18 3 16 1 31 108 8 1 2 3 7 0 29 4 20 0 8 10 9 6 5 320 3 5 3 0 0 7 0 11 0 0 8 128 22 18 51 23 5 6 3 9 48 28 8 1 22 49 13 10 2 12 6 18 44 0 14 5 0 4 30 14 99 105 2 27 17 0 66 10 11 28 52 32 8 22 14 0 90 15 0 22 3 48 29 20 9 0 30 6 8 3 10 16 45 16 17 0 20 0 21 0 6 0 ...
result:
wrong answer 3rd numbers differ - expected: '20', found: '17'