Submission #888065

#TimeUsernameProblemLanguageResultExecution timeMemory
888065vjudge1Nautilus (BOI19_nautilus)C++17
0 / 100
1 ms344 KiB
#include<bits/stdc++.h> using namespace std; bitset<512> tmp[502],grd[502],pos[502]; int main() { freopen("piepie.in", "r", stdin); int r, c, m; cin >> r >> c >> m; for(int i = 1; i <= r; i++) { for(int j = 1; j <= c; j++) { char c = getchar(); if(j==1) c=getchar(); grd[i][j]=(c=='.'); } pos[i]=grd[i]; } for(int i = 0; i < m; i++) { char c = getchar(); if(!i) c=getchar(); for(int j = 1; j <= r; j++) tmp[j]=pos[j], pos[j].reset(); for(int j = 1; j <= r; j++) { if(c=='N'||c=='?') pos[j]|=tmp[j+1]; if(c=='S'||c=='?') pos[j]|=tmp[j-1]; if(c=='E'||c=='?') pos[j]|=tmp[j]<<1; if(c=='W'||c=='?') pos[j]|=tmp[j]>>1; pos[j]&=grd[j]; } } int ans = 0; for(int i = 1; i <= r; i++) ans+=pos[i].count(); cout << ans << '\n'; }

Compilation message (stderr)

nautilus.cpp: In function 'int main()':
nautilus.cpp:5:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
    5 |     freopen("piepie.in", "r", stdin);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...