結果
問題 | No.13 囲みたい! |
ユーザー | hogeover30 |
提出日時 | 2015-02-24 20:07:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 921 bytes |
コンパイル時間 | 355 ms |
コンパイル使用メモリ | 51,708 KB |
最終ジャッジ日時 | 2024-11-14 19:00:15 |
合計ジャッジ時間 | 805 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp:9:16: error: ‘vector’ does not name a type 9 | bool dfs(const vector<vector<int>>& a, int r, int c, int pr, int pc) | ^~~~~~ main.cpp:9:22: error: expected ‘,’ or ‘...’ before ‘<’ token 9 | bool dfs(const vector<vector<int>>& a, int r, int c, int pr, int pc) | ^ main.cpp: In function ‘bool dfs(int)’: main.cpp:11:17: error: ‘r’ was not declared in this scope; did you mean ‘dr’? 11 | if (visited[r][c]) return true; | ^ | dr main.cpp:11:20: error: ‘c’ was not declared in this scope; did you mean ‘dc’? 11 | if (visited[r][c]) return true; | ^ | dc main.cpp:12:13: error: ‘r’ was not declared in this scope; did you mean ‘dr’? 12 | visited[r][c]++; | ^ | dr main.cpp:12:16: error: ‘c’ was not declared in this scope; did you mean ‘dc’? 12 | visited[r][c]++; | ^ | dc main.cpp:15:18: error: ‘pr’ was not declared in this scope; did you mean ‘nr’? 15 | if ((nr==pr and nc==pc) or a[nr][nc]!=a[r][c]) continue; | ^~ | nr main.cpp:15:25: error: ‘nc’ was not declared in this scope; did you mean ‘nr’? 15 | if ((nr==pr and nc==pc) or a[nr][nc]!=a[r][c]) continue; | ^~ | nr main.cpp:15:29: error: ‘pc’ was not declared in this scope; did you mean ‘dc’? 15 | if ((nr==pr and nc==pc) or a[nr][nc]!=a[r][c]) continue; | ^~ | dc main.cpp:15:36: error: ‘a’ was not declared in this scope 15 | if ((nr==pr and nc==pc) or a[nr][nc]!=a[r][c]) continue; | ^ main.cpp:16:17: error: ‘a’ was not declared in
ソースコード
#include <iostream> #include <algorithm> #include <cstring> using namespace std; int dr[]={-1, 0, 1, 0}, dc[]={0, -1, 0, 1}; int visited[110][110]; bool dfs(const vector<vector<int>>& a, int r, int c, int pr, int pc) { if (visited[r][c]) return true; visited[r][c]++; for(int i=0;i<4;++i) { int nr=r+dr[i], nc=c+dc[i]; if ((nr==pr and nc==pc) or a[nr][nc]!=a[r][c]) continue; if (dfs(a, nr, nc, r, c)) return true; } return false; } int main() { int w, h; while (cin>>w>>h) { vector<vector<int>> a(h+2, vector<int>(w+2, -1)); for(int i=0;i<h;++i) for(int j=0;j<w;++j) cin>>a[i+1][j+1]; bool possible=false; memset(visited, 0, sizeof(visited)); for(int i=1;i<=h;++i) for(int j=1;j<=w;++j) if (!visited[i][j]) if (possible=dfs(a, i, j, -1, -1)) goto END; END: cout<<("impossible"+2*possible)<<endl; } }