QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#696217 | #5414. Stop, Yesterday Please No More | 42m0rr0w | WA | 4ms | 4156kb | C++20 | 2.0kb | 2024-10-31 21:51:31 | 2024-10-31 21:51:31 |
Judging History
answer
#include <bits/stdc++.h>
#define test(x) cout<<#x<<" = "<<x<<endl
#define endl '\n'
#define int long long
using namespace std;
const int MAXN = 1e3 + 100;
int n, m, k;
string s;
int a[MAXN][MAXN];
void solve() {
cin >> n >> m >> k >> s;
s = "#" + s;
int sz = s.size();
for (int j = 0; j <= m + 1; ++j)
for (int i = 0; i <= n + 1; ++i)
a[i][j] = 0;
int x = 0, y = 0, u = 0, d = 0, l = 0, r = 0;
for (int i = 1; i <= sz; ++i) {
if (s[i] == 'U')
++y;
else if (s[i] == 'D')
--y;
else if (s[i] == 'L')
--x;
else if (s[i] == 'R')
++x;
u = max(u, y);
d = min(d, y);
l = min(l, x);
r = max(r, x);
}
if (m - r < 1 - l || n - u < 1 - d) {
if (k == 0)
cout << m *n << endl;
else
cout << 0 << endl;
return ;
}
x = -l + 1, y = -d + 1;
int dx = m + l - r, dy = n + d - u;
a[y][x] = 1;
for (int i = 1; i <= sz; ++i) {
if (s[i] == 'U')
++y;
else if (s[i] == 'D')
--y;
else if (s[i] == 'L')
--x;
else if (s[i] == 'R')
++x;
a[y][x] = 1;
}
for (int i = n; i >= 1; --i)
for (int j = m; j >= 1; --j)
a[i][min(m + 1, j + dx)] = -1;
// for (int i = 1; i <= n; ++i)
// for (int j = 1; j <= m; ++j)
// cout << a[i][j] << " \n"[j == m];
for (int i = 1; i <= n; ++i)
for (int j = 1; j <= m; ++j)
a[i][j] += a[i][j - 1];
// for (int i = 1; i <= n; ++i)
// for (int j = 1; j <= m; ++j)
// cout << a[i][j] << " \n"[j == m];
for (int i = n; i >= 1; --i)
for (int j = m; j >= 1; --j)
a[min(n + 1, i + dy)][j] -= a[i][j];
for (int j = 1; j <= m; ++j)
for (int i = 1; i <= n; ++i)
a[i][j] += a[i - 1][j];
int ans = 0;
for (int j = 1; j <= m; ++j)
for (int i = 1; i <= n; ++i)
ans += (a[i][j] == dx * dy - k);
// for (int i = 1; i <= n; ++i)
// for (int j = 1; j <= m; ++j)
// cout << a[i][j] << " \n"[j == m];
cout << ans << endl;
}
signed main() {
ios::sync_with_stdio(0);
cin.tie(0);
int tt = 1;
cin >> tt;
while (tt--)
solve();
}
/*
3
4 5 3
ULDDRR
4 5 0
UUUUUUU
4 5 10
UUUUUUU
*/
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3568kb
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: 4ms
memory: 4156kb
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 16 15 36 240 10 0 1 13 11 18 13 16 3 18 108 8 2 2 0 7 0 30 15 21 0 1 4 9 2 5 320 12 7 3 0 0 4 3 11 0 0 14 0 22 36 51 21 1 6 3 2 48 28 8 63 11 49 13 8 4 108 8 18 44 0 5 10 0 4 30 14 99 105 5 1 17 0 66 9 11 28 52 36 56 33 10 56 90 14 0 121 3 48 27 21 13 1 30 8 3 5 6 16 45 9 32 1 38 0 21 3...
result:
wrong answer 5th numbers differ - expected: '18', found: '16'