QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#264886 | #5414. Stop, Yesterday Please No More | Frocean | WA | 611ms | 19516kb | C++14 | 1.6kb | 2023-11-25 15:52:39 | 2023-11-25 15:52:39 |
Judging History
answer
#include <iostream>
#include <cstring>
#include <cstdio>
#define N 1005
using namespace std;
int map[N * 2 + 10][N * 2 + 10],t,n,m,k;
string s;
int main() {
scanf("%d",&t);
while (t--) {
scanf("%d%d%d",&n,&m,&k);
cin >> s;
memset(map,0,sizeof(map));
map[n + 1][m + 1] = 1;
int maxn = 0, minn = 0,
maxm = 0, minm = 0,
nowx = 0, nowy = 0;
for (int a = 0 ; a < s.length() ; ++ a) {
switch (s[a]) {
case 'U': --nowy; minn = min(minn, nowy);break;
case 'D': ++nowy; maxn = max(maxn, nowy);break;
case 'L': --nowx; minm = min(minm, nowx);break;
case 'R': ++nowx; maxm = max(maxm, nowx);break;
}
if (nowy <= -n || nowy >= n) break;
if (nowx <= -m || nowx >= m) break;
map[n + 1 - nowy][m + 1 - nowx] = 1;
}
if (nowy <= -n || nowy >= n || nowx <= -m || nowx >= m) {
if (k == 0) printf("%d\n",n * m);
else puts("0"); continue;
}
minn = 1 - minn,maxn = n - maxn;
minm = 1 - minm,maxm = m - maxm;
nowy = maxn - minn + 1;
nowx = maxm - minm + 1;
int ans = 0,jud = nowx * nowy - k;
if (jud < 0) {puts("0"); continue;}
for (int a = 1 ; a <= (n * 2 + 3) ; ++ a)
for (int b = 1 ; b <= (m * 2 + 3) ; ++ b) map[a][b] += map[a - 1][b];
for (int a = 1 ; a <= (n * 2 + 3) ; ++ a)
for (int b = 1 ; b <= (m * 2 + 3) ; ++ b) map[a][b] += map[a][b - 1];
for (int a = 1 ; a <= n ; ++ a)
for (int b = 1 ; b <= m ; ++ b) {
int y = n + 1 - a, x = m + 1 - b;
int j = map[maxn + y][maxm + x] - map[minn - 1 + y][maxm + x] -
map[maxn + y][minm - 1 + x] + map[minn - 1 + y][minm - 1 + x];
if (j == jud) ++ ans;
}
printf("%d\n",ans);
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 3ms
memory: 19492kb
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: 611ms
memory: 19516kb
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:
21 11 20 99 18 15 34 0 15 0 0 13 14 18 26 16 1 19 108 8 2 2 3 7 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 38...
result:
wrong answer 1st numbers differ - expected: '228', found: '21'