QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#176532 | #5414. Stop, Yesterday Please No More | brz | WA | 0ms | 3752kb | C++20 | 1.8kb | 2023-09-11 19:23:11 | 2023-09-11 19:23:12 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define cn getchar
template<class TY>void read(TY &x){
x=0;int f1=1;char ch=cn();
while(ch<'0'||ch>'9'){if(ch=='-')f1=-1;ch=cn();}
while(ch>='0'&&ch<='9')x=x*10+(ch-'0'),ch=cn(); x*=f1;
}
template<class TY>void write2(TY x){
if(x>9)write2(x/10);
putchar(x%10+'0');
}
template<class TY>void write(TY x){
if(x<0)putchar('-'),x=-x;
write2(x);
}
int n,m,k,len;
char s[1000010];
int main()
{
int Te;read(Te);while(Te--){
read(n); read(m); read(k);
char ch = getchar(); len=0;
while(ch<'A' || ch>'Z')ch = getchar();
while(ch>='A' && ch<='Z')s[++len] = ch,ch=getchar();
vector<vector<int>> sum(n+1,vector<int>(m+1,0));
int mi1=0,ma1=0,mi2=0,ma2=0;
int x=0,y=0;
for(int i=1;i<=len;i++){
if(s[i]=='U')x--;
if(s[i]=='D')x++;
if(s[i]=='L')y--;
if(s[i]=='R')y++;
mi1=min(mi1,x);
ma1=max(ma1,x);
mi2=min(mi2,y);
ma2=max(ma2,y);
}
int a=0,b=0,c=0,d=0;
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++){
if(i+mi1>=1 && i+ma1<=n && j+mi2>=1 && j+ma2<=m){
if(!a)a=i,b=j;
c=i,d=j;
}
}
printf("%d %d %d %d\n",a,b,c,d);
if(a==0){
if(!k)write(n*m),puts("");
else puts("0");
continue;
}
x=1+n-a,y=1+m-b;
int X=c-a+1,Y=d-b+1;
sum[x][y]=1;
for(int i=1;i<=len;i++){
if(s[i]=='U')x++;
if(s[i]=='D')x--;
if(s[i]=='L')y++;
if(s[i]=='R')y--;
if(x>=1 && x<=n && y>=1 && y<=m)sum[x][y]=1;
// printf(": %d %d\n",x,y);
}
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++)
sum[i][j]+=sum[i-1][j] + sum[i][j-1] -sum[i-1][j-1];
int ans=0;
for(int i=X;i<=n;i++)
for(int j=Y;j<=m;j++){
int p=sum[i][j] - sum[i-X][j] - sum[i][j-Y] + sum[i-X][j-Y];
if(X*Y - p == k)ans++;
}
write(ans);puts("");
}
}
详细
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3752kb
input:
3 4 5 3 ULDDRR 4 5 0 UUUUUUU 4 5 10 UUUUUUU
output:
2 2 3 4 2 0 0 0 0 20 0 0 0 0 0
result:
wrong answer 2nd numbers differ - expected: '20', found: '2'