# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
211522 | Nnandi | Nautilus (BOI19_nautilus) | C++14 | 298 ms | 3084 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 105;
bool dp[maxn][maxn][maxn];
bool tab[maxn][maxn];
int r, c, m;
string dir;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin>>r>>c>>m;
for(int i=1;i<=r;i++) {
for(int j=1;j<=c;j++) {
char z;
cin>>z;
tab[i][j] = (z != '#');
dp[i][j][m] = (z != '#');
}
}
cin>>dir;
reverse(dir.begin(),dir.end());
int sol = 0;
for(int k=m-1;k>=0;k--) {
for(int i=1;i<=r;i++) {
for(int j=1;j<=c;j++) {
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |