QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#180522 | #5414. Stop, Yesterday Please No More | Zhou_JK | TL | 55ms | 11484kb | C++23 | 2.2kb | 2023-09-15 22:36:20 | 2023-09-15 22:36:20 |
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<=len;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)<n&&abs(cury)<m) 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(auto [x,y]:pos)
cerr<<x<<" "<<y<<"\n";
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;
}
详细
Test #1:
score: 100
Accepted
time: 2ms
memory: 7588kb
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: 0
Accepted
time: 55ms
memory: 6012kb
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 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...
result:
ok 1060 numbers
Test #3:
score: 0
Accepted
time: 4ms
memory: 11484kb
input:
1 1000 1000 979065 DDUULULUDULLULLDLUULURRLDURLRDLRRUURUUUDLRLUUDUUDUDLLDDDULU
output:
958416
result:
ok 1 number(s): "958416"
Test #4:
score: 0
Accepted
time: 3ms
memory: 11376kb
input:
1 1000 1000 943471 LRLDLURLDLRDRDUULULRDDLLRURDUURLLDDLDLDDLLLUUURLDRUDRLLUUUUUDLUUDLURURRDLRLRRRLULRRULURLRRDLDRLUDRRLDDLUDRRLLUDLLLRDULRRRRLDUUDRDLULUUUUDRRDULUDLLUUDLDURDRRLRRLDRLDDRURURLUULRRLDLLRLRDRRUULDLDLULLDLLRULLRUULURDURRLUUDUULLULDLRUDDLRLRLLUDDDLLLUDRRLDDULRRURRDURDDRDLLULRLULURLRDLLURD...
output:
889224
result:
ok 1 number(s): "889224"
Test #5:
score: -100
Time Limit Exceeded
input:
1 1000 1000 315808 LLRURURRDDDULLDDUDRDLRLLLDDDLUDRDURLDULRLRULUUDLUULUUDULLLLDDURLDUULUUDLLDLLDRUDUULRLLRLRUURLRLULLDDLLDUDLLRUUDRLDLUULDLLDRRRURDULLDRRRDURURDRLDURURUDLURLDURRLRRUDUDURDRLRRRDLRRURLURUDRRLDLRULLDLUURDURLURLLRDLRDRUURURDRUDUUUDLRRLUDLUUDUDDRRDUULUUDDRLLULDUUDRURRDRLULRLULDURLURUDLLD...