Submission #331799

#TimeUsernameProblemLanguageResultExecution timeMemory
331799daniel920712Snake Escaping (JOI18_snake_escaping)C++14
75 / 100
2054 ms22968 KiB
#include <iostream> #include <stdio.h> #include <stdlib.h> #include <vector> #include <string.h> #include <map> #include <utility> #include <algorithm> #include <stack> #include <queue> using namespace std; char all[1148576]; char tt[25]; int con1[2][1100005]; int con2[2][1100005]; int ans=0; int N; queue < pair < pair < int , int > , int > > BFS; int main() { //freopen("05-05.txt","rt",stdin); //freopen("tt.txt","w+t",stdout); int M,i,j,ok,a,b,c,x,y,z; scanf("%d %d",&N,&M); scanf("%s",all); for(i=0;i<(1<<N);i++) con2[0][i]=con1[0][i]=all[i]-'0'; for(i=0;i<N;i++) { for(j=0;j<(1<<N);j++) { con1[1-i%2][j]=con1[i%2][j]; con2[1-i%2][j]=con2[i%2][j]; if(j&(1<<i)) con1[1-i%2][j]+=con1[i%2][j-(1<<i)]; else con2[1-i%2][j]+=con2[i%2][j+(1<<i)]; } } while(M--) { scanf("%s",tt); ans=0; a=0; b=0; c=0; for(i=0;i<N;i++) { if(tt[i]=='?') a++; else if(tt[i]=='1') b++; else c++; } if(b<=a&&b<=c) { BFS.push(make_pair(make_pair(0,0),0)); while(!BFS.empty()) { x=BFS.front().first.first; y=BFS.front().first.second; z=BFS.front().second; BFS.pop(); if(x==N) { if(z==0) ans+=con1[N%2][y]; else ans-=con1[N%2][y]; continue; } if(tt[x]=='1') { BFS.push(make_pair(make_pair(x+1,y+(1<<(N-x-1))),z)); BFS.push(make_pair(make_pair(x+1,y),z^1)); } else if(tt[x]=='0') BFS.push(make_pair(make_pair(x+1,y),z)); else BFS.push(make_pair(make_pair(x+1,y+(1<<(N-x-1))),z)); } } else if(a<=b&&a<=c) { BFS.push(make_pair(make_pair(0,0),0)); while(!BFS.empty()) { x=BFS.front().first.first; y=BFS.front().first.second; z=BFS.front().second; BFS.pop(); if(x==N) { ans+=(all[y]-'0'); continue; } if(tt[x]=='?') { BFS.push(make_pair(make_pair(x+1,y+(1<<(N-x-1))),z)); BFS.push(make_pair(make_pair(x+1,y),z)); } else BFS.push(make_pair(make_pair(x+1,y+(1<<(N-x-1))*(tt[x]-'0')),z)); } } else if(c<=b&&c<=a) { BFS.push(make_pair(make_pair(0,0),0)); while(!BFS.empty()) { x=BFS.front().first.first; y=BFS.front().first.second; z=BFS.front().second; BFS.pop(); if(x==N) { if(z==0) ans+=con2[N%2][y]; else ans-=con2[N%2][y]; continue; } if(tt[x]=='0') { BFS.push(make_pair(make_pair(x+1,y+(1<<(N-x-1))),z^1)); BFS.push(make_pair(make_pair(x+1,y),z)); } else if(tt[x]=='1') BFS.push(make_pair(make_pair(x+1,y+(1<<(N-x-1))),z)); else BFS.push(make_pair(make_pair(x+1,y),z)); } } printf("%d\n",ans); } return 0; }

Compilation message (stderr)

snake_escaping.cpp: In function 'int main()':
snake_escaping.cpp:23:15: warning: unused variable 'ok' [-Wunused-variable]
   23 |     int M,i,j,ok,a,b,c,x,y,z;
      |               ^~
snake_escaping.cpp:24:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   24 |     scanf("%d %d",&N,&M);
      |     ~~~~~^~~~~~~~~~~~~~~
snake_escaping.cpp:25:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   25 |     scanf("%s",all);
      |     ~~~~~^~~~~~~~~~
snake_escaping.cpp:42:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   42 |         scanf("%s",tt);
      |         ~~~~~^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...