QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#123196#1811. How to Move the BeansEastKingWA 0ms5976kbC++173.4kb2023-07-11 20:56:462023-07-11 20:56:49

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-07-11 20:56:49]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:5976kb
  • [2023-07-11 20:56:46]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
char s[1005][2005];
int R[1005][2005],L[1005][2005];
int STL[1005][11][4];
int STR[1005][11][4];
int dp[1005][1005];
int mex(int x=4,int y=4,int z=4){
    for(int i=0;i<=4;i++){
        if(x!=i&&y!=i&&z!=i)return i;
    }
}
int main(){
    int H,W;
    scanf("%d%d",&H,&W);
    for(int i=0;i<H;i++){
        scanf("%s",s[i]);
    }
    for(int j=0;j<W;j++)s[H][j]='.';
    for(int i=0;i<H;i++){
    	for(int j=0;j<W;j++)s[i][j+W]='.';
        for(int j=0;j<2*W;j++){
            if(s[i][j]!='.')L[i][j]=max(1,L[i][j]+1);
            else L[i][j]=0;
            if(L[i][j%W]>W)L[i][j%W]=W;
        }
        for(int j=2*W-1;j>=0;j--){
            if(s[i][j%W]!='.')R[i][j%W]=max(1,R[i][(j+1)%W]+1);
            else R[i][j%W]=0;
            if(R[i][j%W]>W)R[i][j%W]=W;
        }
    }
    for(int i=H-1;i>=0;i--){
        memset(STL,0,sizeof(STL));
        memset(STR,0,sizeof(STR));
        for(int j=0;j<W;j++){
            for(int l=0;l<=3;l++){
                if(s[i+1][j]=='.'){
                    STL[j][0][l]=mex(l);

                    STR[j][0][l]=mex(l);
                }else{
                    STL[j][0][l]=mex(dp[i+1][j],l);

                    STR[j][0][l]=mex(dp[i+1][j],l);
                } 
            }
        }
        for(int k=1;k<=10;k++){
            for(int j=0;j<W;j++){
                for(int l=0;l<=3;l++){
                    STL[j][k][l]=STL[(j-(1<<(k-1))+W)%W][k-1][STL[j][k-1][l]];
                    STR[j][k][l]=STR[(j+(1<<(k-1))+W)%W][k-1][STR[j][k-1][l]];
                }
            }
        }
        //calc dp[i][j] len R[i][j]-1
        auto calcL=[&](int dis,int len){
            int ans=3;
            for(int j=10;j>=0;j--){
                if((len>>j)&1){
                    ans=STL[dis][j][ans];
                    dis=(dis-(1<<j)%W+W)%W;
                }
            }
            return ans;
        };
        auto calcR=[&](int dis,int len){
            int ans=3;
            for(int j=10;j>=0;j--){
                if((len>>j)&1){
                    ans=STR[dis][j][ans];
                    dis=(dis+(1<<j)+W)%W;
                }
            }
            return ans;
        };
        for(int j=0;j<W;j++){
            if(s[i][j]!='.'){
                int d1=4,d2=4,d3=4;
                if(s[i+1][j]!='.'){
                    d1=dp[i+1][j];
                }

                if(R[i][j]>=1){
                	if(R[i][j]==W){
                		d2=calcL((i+R[i][j]+W)%W,R[i][j]);
					}else{
						d2=calcL((i+R[i][j]-1+W)%W,R[i][j]-1);
					}
                    
                }
                if(L[i][j]>=1){
                	if(L[i][j]==W){
						d3=calcR((i-L[i][j]+W)%W,L[i][j]);
					}else{
						d3=calcR((i-L[i][j]+1+W)%W,L[i][j]-1);
					}
                    
                }
                dp[i][j]=mex(d1,d2,d3);
            }
                //printf("dp[%d][%d]=%d\n",i,j,dp[i][j]);
        }
    }
    int ans=0;
    int cnt=0;
    for(int i=0;i<H;i++){
        for(int j=0;j<W;j++){
        	//if(s[i][j]!='.')printf("dp=%d\n",dp[i][j]);
        	//else printf(".\n");
            if(s[i][j]=='B'){
				ans^=dp[i][j];
				//printf("dp=%d\n",dp[i][j]);
				cnt+=dp[i][j];
			}
        }
    }
    //printf("%d\n",cnt);
    if(ans==0)printf("Bob");
    else printf("Alice");
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 5948kb

input:

2 3
B.#
#..

output:

Alice

result:

ok "Alice"

Test #2:

score: -100
Wrong Answer
time: 0ms
memory: 5976kb

input:

1 1
B

output:

Alice

result:

wrong answer 1st words differ - expected: 'Bob', found: 'Alice'