#include <bits/stdc++.h>
#define speed ios_base::sync_with_stdio(0); cin.tie(0)
#define all(x) (x).begin(),(x).end()
#define F first
#define S second
//#pragma GCC optimize("O3,unroll-loops")
//#pragma GCC target("avx,avx2")
//#pragma GCC target("popcnt")
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef double db;
typedef long double ldb;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
const ll MAX=1e5+10,P=1e9+7;
const ll INF=0x3f3f3f3f,oo=0x3f3f3f3f3f3f3f3f;
const ldb eps=1e-6;
const ldb PI=acos(-1.0);
const int dir[4][2]={{-1,0},{0,1},{1,0},{0,-1}};
template<typename T>
using vvector = vector<vector<T>>;
int main() {
speed;
int n,m,k;
cin>>n>>m>>k;
vvector<bool> mp(n+2,vector<bool>(m+2));
for (int i=0;i<=n;i++) {
mp[i][0]=mp[i][m+1]=1;
}
for (int i=0;i<=m;i++) {
mp[n+1][i]=mp[0][i]=1;
}
vector<vvector<bool>> pos(2,vvector<bool>(n+1,vector<bool>(m+1)));
for (int i=1;i<=n;i++) {
for (int j=1;j<=m;j++) {
char c;
cin>>c;
mp[i][j]=(c=='#');
pos[0][i][j]=!mp[i][j];
}
}
for (int i=1;i<=k;i++) {
char c;
cin>>c;
vector<int> d;
if (c=='N' or c=='?') d.push_back(0);
if (c=='E' or c=='?') d.push_back(1);
if (c=='S' or c=='?') d.push_back(2);
if (c=='W' or c=='?') d.push_back(3);
for (int x=1;x<=n;x++) {
for (int y=1;y<=m;y++) {
pos[i&1][x][y]=0;
}
}
for (int x=1;x<=n;x++) {
for (int y=1;y<=m;y++) {
for (int l:d) {
int nx=x+dir[l][0],ny=y+dir[l][1];
if (nx<=n and nx>=1 and ny<=m and ny>=1 and !mp[nx][ny]) {
pos[i&1][nx][ny]=pos[i&1^1][x][y]|pos[i&1][nx][ny];
}
}
}
}
}
ll ans=0;
for (int x=1;x<=n;x++) {
for (int y=1;y<=m;y++) {
ans+=pos[n&1][x][y];
}
}
cout<<ans<<"\n";
return 0;
}
Compilation message
nautilus.cpp: In function 'int main()':
nautilus.cpp:64:47: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
64 | pos[i&1][nx][ny]=pos[i&1^1][x][y]|pos[i&1][nx][ny];
| ~^~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
336 KB |
Output is correct |
2 |
Correct |
8 ms |
408 KB |
Output is correct |
3 |
Correct |
10 ms |
336 KB |
Output is correct |
4 |
Correct |
10 ms |
504 KB |
Output is correct |
5 |
Correct |
7 ms |
336 KB |
Output is correct |
6 |
Correct |
5 ms |
336 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
336 KB |
Output is correct |
2 |
Correct |
8 ms |
408 KB |
Output is correct |
3 |
Correct |
10 ms |
336 KB |
Output is correct |
4 |
Correct |
10 ms |
504 KB |
Output is correct |
5 |
Correct |
7 ms |
336 KB |
Output is correct |
6 |
Correct |
5 ms |
336 KB |
Output is correct |
7 |
Correct |
11 ms |
336 KB |
Output is correct |
8 |
Correct |
17 ms |
336 KB |
Output is correct |
9 |
Correct |
18 ms |
496 KB |
Output is correct |
10 |
Correct |
13 ms |
588 KB |
Output is correct |
11 |
Correct |
8 ms |
336 KB |
Output is correct |
12 |
Correct |
16 ms |
496 KB |
Output is correct |
13 |
Correct |
21 ms |
336 KB |
Output is correct |
14 |
Correct |
27 ms |
336 KB |
Output is correct |
15 |
Correct |
18 ms |
336 KB |
Output is correct |
16 |
Correct |
11 ms |
336 KB |
Output is correct |
17 |
Correct |
20 ms |
500 KB |
Output is correct |
18 |
Correct |
26 ms |
336 KB |
Output is correct |
19 |
Correct |
31 ms |
500 KB |
Output is correct |
20 |
Correct |
21 ms |
336 KB |
Output is correct |
21 |
Correct |
19 ms |
336 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
336 KB |
Output is correct |
2 |
Correct |
8 ms |
408 KB |
Output is correct |
3 |
Correct |
10 ms |
336 KB |
Output is correct |
4 |
Correct |
10 ms |
504 KB |
Output is correct |
5 |
Correct |
7 ms |
336 KB |
Output is correct |
6 |
Correct |
5 ms |
336 KB |
Output is correct |
7 |
Correct |
11 ms |
336 KB |
Output is correct |
8 |
Correct |
17 ms |
336 KB |
Output is correct |
9 |
Correct |
18 ms |
496 KB |
Output is correct |
10 |
Correct |
13 ms |
588 KB |
Output is correct |
11 |
Correct |
8 ms |
336 KB |
Output is correct |
12 |
Correct |
16 ms |
496 KB |
Output is correct |
13 |
Correct |
21 ms |
336 KB |
Output is correct |
14 |
Correct |
27 ms |
336 KB |
Output is correct |
15 |
Correct |
18 ms |
336 KB |
Output is correct |
16 |
Correct |
11 ms |
336 KB |
Output is correct |
17 |
Correct |
20 ms |
500 KB |
Output is correct |
18 |
Correct |
26 ms |
336 KB |
Output is correct |
19 |
Correct |
31 ms |
500 KB |
Output is correct |
20 |
Correct |
21 ms |
336 KB |
Output is correct |
21 |
Correct |
19 ms |
336 KB |
Output is correct |
22 |
Execution timed out |
1072 ms |
848 KB |
Time limit exceeded |
23 |
Halted |
0 ms |
0 KB |
- |