QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#683407 | #5414. Stop, Yesterday Please No More | blue_sky | WA | 4ms | 3844kb | C++20 | 2.4kb | 2024-10-27 20:52:07 | 2024-10-27 20:52:07 |
Judging History
answer
#include <bits/stdc++.h>
#define int long long
#define x first
#define y second
#define bug(X) cout << "bug:# " << X << endl
#define bug2(f, X) cout << "bug:# " << f << " " << X << endl
#define bug3(i, j, G) cout << "bug:# " << i << ' ' << j << ' ' << G << endl
// #define endl '\n'
using namespace std;
const int mod = 998244353;
const int N = 10 + 5e5;
void _();
signed main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t = 1;
cin >> t;
while (t--)
_();
return 0;
}
void _()
{
int n, m, k;
cin >> n >> m >> k;
vector<vector<int>> pre(n + 2, vector<int>(m + 2));
string s;
cin >> s;
int u = 1e18, d = 0, l = 1e18, r = 0;
int x = 0, y = 0;
for (auto v : s)
{
if (v == 'D')
x++;
if (v == 'U')
x--;
if (v == 'L')
y--;
if (v == 'R')
y++;
d = max(d, x);
u = min(u, x);
r = max(r, y);
l = min(l, y);
}
r = m - r;
d = n - d;
u = 1 - u;
l = 1 - l;
// bug2(l, r);
// bug2(u, d);
int need = (d - u + 1) * (r - l + 1) - k;
// bug(need);
if ((l >= r) || (u >= d))
{
cout << (k == 0 ? n * m : 0) << endl;
return;
}
int res = 0;
map<pair<int, int>, int> has;
int sx = u, sy = l;
// bug2(sx, sy);
auto add = [&](int x1, int y1)
{
int x2 = x1 + d - u;
int y2 = y1 + r - l;
// bug2(x2, y2);
pre[x1][y1]++;
pre[x1][y2 + 1]--;
pre[x2 + 1][y1]--;
pre[x2 + 1][y2 + 1]++;
};
has[{sx, sy}] = 1;
add(sx, sy);
for (auto v : s)
{
if (v == 'D')
sx++;
if (v == 'U')
sx--;
if (v == 'R')
sy++;
if (v == 'L')
sy--;
if (!has.count({sx, sy}))
add(sx, sy); //, bug2(sx, sy);
has[{sx, sy}] = 1;
}
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
{
pre[i][j] += pre[i][j - 1] + pre[i - 1][j] - pre[i - 1][j - 1];
if (pre[i][j] == need)
res++;
}
// for (int i = 1; i <= n; i++)
// {
// for (int j = 1; j <= m; j++)
// cout << pre[i][j] << ' ';
// cout << endl;
// }
cout << res << endl;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3844kb
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: 3768kb
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 0 240 15 1 0 9 14 18 26 0 1 19 0 0 0 0 0 0 0 30 16 21 0 0 10 9 15 0 320 11 0 0 0 0 12 0 0 0 0 14 0 22 36 51 23 7 6 4 2 48 28 8 63 0 49 0 0 4 108 10 0 44 0 15 9 13 4 30 14 99 105 10 14 17 0 66 0 11 28 0 34 56 0 14 56 90 14 0 121 0 48 0 36 13 4 30 7 0 3 11 16 0 0 34 0 38 0 21 0 6 0 ...
result:
wrong answer 7th numbers differ - expected: '34', found: '0'