QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#176532#5414. Stop, Yesterday Please No MorebrzWA 0ms3752kbC++201.8kb2023-09-11 19:23:112023-09-11 19:23:12

Judging History

你现在查看的是最新测评结果

  • [2023-09-11 19:23:12]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3752kb
  • [2023-09-11 19:23:11]
  • 提交

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'