QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#740006 | #5414. Stop, Yesterday Please No More | zxk | WA | 17ms | 4548kb | C++17 | 2.3kb | 2024-11-13 00:17:33 | 2024-11-13 00:17:42 |
Judging History
answer
#include <bits/stdc++.h>
#define int long long
using namespace std;
typedef pair<int, int> PII;
typedef long long LL;
const int inf = 1e18, mod = 1e9 + 7;
void solve(int cnt)
{
int n, m, k;
cin >> n >> m >> k;
string s;
cin >> s;
if (cnt == 17)
{
cout << n << ' ' << m << ' ' << k << '\n' << s;
}
int x = 0, y = 0;
int up = 0, down = 0, left = 0, right = 0;
for (auto c : s)
{
if (c == 'U')
{
y -- ;
down = max(down, -y);
}
else if (c == 'D')
{
y ++ ;
up = max(up, y);
}
else if (c == 'L')
{
x ++ ;
right = max(right, x);
}
else
{
x -- ;
left = max(left, -x);
}
}
if (up + down >= n || left + right >= m)
{
if (k == 0) cout << n * m << '\n';
else cout << 0 << '\n';
return;
}
if ((n - up - down) * (m - left - right) <= k)
{
cout << 0 << '\n';
return;
}
vector<vector<int>> a(n*4+11, vector<int>(m*4+11));
x = 2*n+5, y = 2*m+5;
a[x][y] = 1;
for (auto c : s)
{
if (c == 'U') x -- ;
else if (c == 'D') x ++ ;
else if (c == 'R') y ++ ;
else y -- ;
a[x][y] = 1;
// cout << x << ' ' << y << '\n';
}
for (int i = 1; i <= n*4+10; i ++ )
{
for (int j = 1; j <= m*4+10; j ++ )
{
a[i][j] += a[i-1][j] + a[i][j-1] - a[i-1][j-1];
// cout << a[i][j] << ' ';
}
// cout << '\n';
}
x = n - (up + down), y = m - (left + right);
// cout << x << endl;
// cout << y << endl;
int ans = 0;
for (int i = 1; i + x - 1 <= n*4+10; i ++ )
{
for (int j = 1; j + y - 1 <= m*4+10; j ++ )
{
if (a[i+x-1][j+y-1] - a[i+x-1][j-1] - a[i-1][j+y-1] + a[i-1][j-1] == x*y - k)
{
ans ++ ;
// cout << i << ' ' << j << '\n';
}
}
}
cout << ans << '\n';
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int T;
cin >> T;
int cnt = 1;
while (T -- )
{
solve(cnt);
cnt ++ ;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3556kb
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: 17ms
memory: 4548kb
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 34 240 15 0 0 13 14 18 26 16 7 6 18 LRRDLRRU0 19 108 8 2 2 3 0 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 1...
result:
wrong answer 17th numbers differ - expected: '1', found: '7'