#include <cmath>
#include <iostream>
#include <set>
#include <climits>
#include <cstdio>
#include <algorithm>
#include <cassert>
#include <string>
#include <vector>
#include <iomanip>
#include <unordered_map>
#include <type_traits>
#include <bit>
#include <bitset>
#include <string>
#include <queue>
#define ll long long
#include <map>
using namespace std;
vector<string> vec;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int R, C, M;
cin >> R >> C >> M;
vec.resize(R);
for (int i = 0; i < R; i++) {
cin >> vec[i];
assert(vec[i].size() == C);
}
string s;
cin >> s;
bitset<10000> orig;
for (int i = 0; i < R; i++) {
for (int j = 0; j < C; j++) {
//cout << C * i + j << '\n';
if (vec[i][j] == '.') {
orig.set(C * i + j + 500);
}
}
}
bitset<10000> pos = orig;
map<char,pair<int,int>> myMap;
myMap['W'] = {0, -1};
myMap['E'] = {0, 1};
myMap['S'] = {1, 0};
myMap['N'] = {-1, 0};
//cout << pos.count() << '\n';
for (int i = 0; i < s.length(); i++) {
bitset<10000> valid;
for (char c: {'W', 'N', 'S', 'E'}) {
if (s[i] == c || s[i] == '?') {
bitset<10000> dum = pos;
if (myMap[c].second != 0) {
if (myMap[c].second > 0) dum >>= 1;
else dum <<= 1;
} else {
if (myMap[c].first > 0) dum <<= C;
else dum >>= C;
}
valid = valid | (dum & orig);
}
}
pos = valid;
//cout << pos.count() << '\n';
}
cout << pos.count() << '\n';
}
Compilation message
In file included from /usr/include/c++/10/cassert:44,
from nautilus.cpp:7:
nautilus.cpp: In function 'int main()':
nautilus.cpp:30:30: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
30 | assert(vec[i].size() == C);
| ~~~~~~~~~~~~~~^~~~
nautilus.cpp:50:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
50 | for (int i = 0; i < s.length(); i++) {
| ~~^~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
3 ms |
596 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
3 ms |
596 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
3 ms |
596 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |