# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
362921 | aujasvit_datta | Nautilus (BOI19_nautilus) | C++14 | 5 ms | 876 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pb push_back
#define mp make_pair
#define pii pair<int, int>
#define fr first
#define sc second
#define all(a) a.begin(),a.end()
int r,c,m;
string s;
string grid[102];
set <pii> ans;
bool can_happen(int row, int col) {
int cr = row, cc = col;
for(int i = 0; i < s.size(); i++) {
if(s[i] == 'W') {
if(cc != 0 and grid[cr][cc - 1] != '#') {
cc--;
} else {
return false;
}
} else if(s[i] == 'S') {
if(cr != r and grid[cr + 1][cc] != '#') {
cr++;
} else {
return false;
}
} else if(s[i] == 'N') {
if(cr != 1 and grid[cr - 1][cc] != '#') {
cr--;
} else {
return false;
}
} else if(s[i] == 'E') {
if(cc != c - 1 and grid[cr][cc + 1] != '#') {
cc++;
} else {
return false;
}
}
}
ans.insert(mp(cr,cc));
return true;
}
int count() {
for(int i = 1; i <= r; i++) {
for(int j = 0; j < c; j++) {
if(grid[i][j] != '#' and can_happen(i, j)) {
//do nothing
}
}
}
return ans.size();
}
signed main() {
ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
cin >> r >> c >> m;
for(int i = 1; i <= r; i++) {
cin >> grid[i];
}
cin >> s;
cout << count();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |