QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#180515 | #5414. Stop, Yesterday Please No More | Zhou_JK | WA | 20ms | 7608kb | C++23 | 2.2kb | 2023-09-15 22:23:09 | 2023-09-15 22:23:10 |
Judging History
answer
#include<iostream>
#include<cstdio>
#include<vector>
#include<algorithm>
using namespace std;
const int N=1005,L=1000005;
int n,m,k;
int len;
char s[L];
int a[N][N],sum[N][N];
int getsum(int l1,int r1,int l2,int r2)
{
l1=max(l1,1),r1=max(r1,1),l1=min(l1,n+1),r1=min(r1,m+1);
l2=max(l2,0),r2=max(r2,0),l2=min(l2,n),r2=min(r2,m);
return sum[l2][r2]-sum[l1-1][r2]-sum[l2][r1-1]+sum[l1-1][r1-1];
}
void solve()
{
cin>>n>>m>>k;
string str;
cin>>str;
len=str.size();
for(int i=1;i<=len;i++)
s[i]=str[i-1];
int u=1,d=n,l=1,r=m;
int curu=1,curd=n,curl=1,curr=m;
for(int i=1;i<=len;i++)
{
if(s[i]=='U') curu++,curd++;
else if(s[i]=='D') curu--,curd--;
else if(s[i]=='L') curl++,curr++;
else if(s[i]=='R') curr--,curl--;
u=max(u,curu),d=min(d,curd),l=max(l,curl),r=min(r,curr);
}
if(u>d||l>r)
{
if(k==0) cout<<n*m<<"\n";
else cout<<0<<"\n";
return;
}
int mnx=0,mny=0;
int curx=0,cury=0;
vector<pair<int,int>>pos;
pos.emplace_back(curx,cury);
for(int i=1;i<=n;i++)
{
if(s[i]=='U') curx++;
else if(s[i]=='D') curx--;
else if(s[i]=='L') cury++;
else if(s[i]=='R') cury--;
if(abs(curx)<d-u+1&&abs(cury)<r-l+1) pos.emplace_back(curx,cury);
mnx=min(mnx,curx),mny=min(mny,cury);
}
mnx=-mnx,mny=-mny;
mnx++,mny++;
sort(pos.begin(),pos.end());
pos.erase(unique(pos.begin(),pos.end()),pos.end());
for(auto &[x,y]:pos)
x+=mnx,y+=mny;
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++)
a[i][j]=0;
for(auto [x,y]:pos)
a[x][y]++;
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++)
sum[i][j]=a[i][j]+sum[i-1][j]+sum[i][j-1]-sum[i-1][j-1];
int ans=0;
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++)
if(getsum(mnx-(i-u),mny-(j-l),mnx+(d-i),mny+(r-j))==(d-u+1)*(r-l+1)-k) ans++;
cout<<ans<<"\n";
return;
}
int main()
{
// ios::sync_with_stdio(false);
// cin.tie(nullptr),cout.tie(nullptr);
int T;
cin>>T;
while(T--)
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 7608kb
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: 20ms
memory: 5948kb
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 10 15 17 240 14 0 0 11 9 18 0 0 2 15 20 4 2 2 3 7 0 15 13 8 0 14 10 9 2 5 320 10 0 0 0 24 4 0 11 10 0 8 14 22 3 51 15 0 6 4 2 48 28 8 0 1 7 13 10 4 0 0 9 44 0 8 9 0 4 30 2 12 105 5 1 17 0 66 8 11 28 13 18 3 11 9 9 90 1 0 12 0 48 2 21 6 0 30 8 12 25 18 2 5 4 18 0 19 0 6 0 19 0 10 15 48 0 ...
result:
wrong answer 4th numbers differ - expected: '99', found: '9'