QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#570976 | #5414. Stop, Yesterday Please No More | Abcl | WA | 17ms | 6392kb | C++14 | 3.9kb | 2024-09-17 19:32:06 | 2024-09-17 19:32:07 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
#define mod 1000000007
using namespace std;
const int N = 1005;
int n, m, k;
string s;
int xl, xr, yl, yr;
vector<pair<int, int> > nums;
int mp[N][N];
void solve() {
cin >> n >> m >> k;
for (int i = 0; i <= n; i++) {
for (int j = 0; j <= m; j++) {
mp[i][j] = 0;
}
}
cin >> s;
xl = 1, xr = n, yl = 1, yr = m;
int nxl = 1, nxr = n, nyl = 1, nyr = m;
for (int i = 0; i < s.length(); i++) {
if (s[i] == 'R') {
nyl++, nyr++;
if (nyl > m) {
if (k == 0)cout << n * m << endl;
else cout << 0 << endl;
return;
}
if (nyr > m) {
nyr = m;
yr--;
}
}
else if (s[i] == 'L') {
nyl--, nyr--;
if (nyr < 1) {
if (k == 0)cout << n * m << endl;
else cout << 0 << endl;
return;
}
if (nyl < 1) {
nyl = 1;
yl++;
}
}
else if (s[i] == 'U') {
nxl--, nxr--;
if (nxr < 1) {
if (k == 0)cout << n * m << endl;
else cout << 0 << endl;
return;
}
if (nxl < 1) {
nxl = 1;
xl++;
}
}
else if (s[i] == 'D') {
nxl++, nxr++;
if (nxl > n) {
if (k == 0)cout << n * m << endl;
else cout << 0 << endl;
return;
}
if (nxr > n) {
nxr = n;
xr--;
}
}
}
int sum = (yr - yl + 1) * (xr - xl + 1);
int x = 0, y = 0;
nums.push_back({ x,y });
for (int i = 0; i < s.length(); i++) {
if (s[i] == 'U') {
x--;
nums.push_back({ x,y });
}
else if (s[i] == 'D') {
x++;
nums.push_back({ x,y });
}
else if (s[i] == 'L') {
y--;
nums.push_back({ x,y });
}
else if (s[i] == 'R') {
y++;
nums.push_back({ x,y });
}
}
// cout<<xl<<" "<<xr<<" "<<yl<<" "<<yr<<endl;
int mix = 1e18, miy = 1e18;
for (auto p = nums.begin(); p != nums.end(); p++) {
mix = min(mix, p->first);
miy = min(miy, p->second);
}
mix--; miy--;
mix = -mix, miy = -miy;
for (auto p = nums.begin(); p != nums.end(); p++) {
mp[p->first + mix][p->second + miy] = 1;
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
mp[i][j] = mp[i][j] + mp[i - 1][j] + mp[i][j - 1] - mp[i - 1][j - 1];
// cout<<mp[i][j]<<' ';
}//cout<<endl;
}
int ans = 0;
//枚举起点,1,1一直到n,m;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
//放右上角
int xx = i, yy = j;
int x = i - (xr - xl), y = j - (yr - yl);
x = max(1ll, x); y = max(1ll, y);
if ((mp[xx][yy] + mp[x - 1][y - 1] - mp[x - 1][yy] - mp[xx][y - 1]) == sum - k)ans++;
/* //放左上角
x=i,y=j;
xx=i+(xr-xl),yy = j + (yr - yl);
if(xx>n)xx=n;
if(yy>m)yy=m;
if ((mp[xx][yy] + mp[x - 1][y - 1] - mp[x - 1][yy] - mp[xx][y - 1]) == sum - k)ans++;*/
// cout<<xx<<' '<<yy<< ' '<<x<<' '<<y<<endl;
}
}
cout << ans << endl;
return;
}
signed main() {
//ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
//freopen("in.txt","r",stdin);
//freopen("out.txt","w",stdout);
int T_case = 1;
cin >> T_case;
while (T_case--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3616kb
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: 6392kb
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 9 13 15 16 240 10 0 0 2 6 18 14 4 13 7 4 3 1 1 0 14 2 23 4 15 0 1 3 9 18 1 320 1 2 2 2 2 7 0 3 1 1 3 2 22 2 51 3 10 6 2 8 48 28 8 9 2 4 2 5 1 11 3 2 44 0 1 5 0 4 30 3 3 105 4 10 17 2 66 2 11 28 3 3 2 3 2 4 90 4 3 11 4 48 5 4 1 0 30 1 3 4 4 4 2 4 2 0 2 3 1 0 0 0 3 4 48 5 7 225 4 3 3 1 11 3 ...
result:
wrong answer 4th numbers differ - expected: '99', found: '9'