QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#703821 | #5414. Stop, Yesterday Please No More | fsy_juruo | WA | 3ms | 4104kb | C++14 | 1.9kb | 2024-11-02 18:34:55 | 2024-11-02 18:34:56 |
Judging History
answer
#include <bits/stdc++.h>
using LL = long long;
int T, n, m, k;
std::string str;
const int maxN = 1e3 + 10;
std::unordered_set<int> s;
int b[maxN << 1][maxN << 1];
void modify(int lx, int ly, int rx, int ry) {
if(lx <= 0 || ly <= 0 || rx <= 0 || ry <= 0) return;
if(lx > n || ly > m || rx > n || ry > m) return;
b[rx + 1][ry + 1] += 1;
b[lx][ly] += 1;
b[rx + 1][ly] -= 1;
b[lx][ry + 1] -= 1;
}
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
std::cin >> T;
while(T--) {
std::cin >> n >> m >> k >> str;
int min_x = 0, min_y = 0, max_x = 0, max_y = 0;
int cx = 0, cy = 0;
for(auto c : str) {
if(c == 'U') cx--;
if(c == 'D') cx++;
if(c == 'L') cy--;
if(c == 'R') cy++;
min_x = std::min(min_x, cx);
min_y = std::min(min_y, cy);
max_x = std::max(max_x, cx);
max_y = std::max(max_y, cy);
}
int lf_x = 1 + max_x, lf_y = 1 + max_y,
rg_x = n + min_x, rg_y = m + min_y;
if(lf_x > rg_x || lf_y > rg_y || max_x >= n || min_x <= -n || max_y >= m || min_y <= -m) {
std::cout << (k == 0 ? n * m : 0) << "\n";
continue;
}
for(int i = 1; i <= n + 1; i++) {
for(int j = 1; j <= m + 1; j++) b[i][j] = 0;
}
int x = lf_x, y = lf_y, rx = rg_x, ry = rg_y;
modify(lf_x, lf_y, rg_x, rg_y);
s.clear();
s.insert(lf_x * m + lf_y);
for(auto c : str) {
if(c == 'U') x--, rx--;
if(c == 'D') x++, rx++;
if(c == 'L') y--, ry--;
if(c == 'R') y++, ry++;
if(s.count(x * m + y) == 0) {
modify(x, y, rx, ry);
s.insert(x * m + y);
}
}
int ans = 0;
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= m; j++) {
b[i][j] += b[i - 1][j] + b[i][j - 1] - b[i - 1][j - 1];
}
}
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= m; j++) {
ans += (k == (rg_x - lf_x + 1) * (rg_y - lf_y + 1) - b[i][j]);
}
}
std::cout << ans << "\n";
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3632kb
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: 3ms
memory: 4104kb
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 34 0 14 15 0 240 30 0 0 0 0 18 0 0 12 0 0 24 2 2 0 58 1 210 0 56 0 0 2 9 0 0 320 32 5 0 0 0 0 0 0 0 0 0 0 22 0 51 0 0 6 8 7 48 28 8 0 11 0 0 0 14 0 0 9 44 0 36 0 0 4 30 0 0 105 0 0 17 0 66 8 11 28 0 30 56 11 35 0 90 14 0 0 0 48 12 0 26 0 30 8 0 20 10 0 0 0 0 0 0 0 10 0 39 0 0 156 48 0 0 225 0...
result:
wrong answer 3rd numbers differ - expected: '20', found: '34'