結果
問題 | No.13 囲みたい! |
ユーザー | btk |
提出日時 | 2015-05-03 21:14:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 1,583 bytes |
コンパイル時間 | 835 ms |
コンパイル使用メモリ | 97,972 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 10:43:23 |
合計ジャッジ時間 | 1,495 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 5 ms
5,248 KB |
testcase_04 | AC | 4 ms
5,248 KB |
testcase_05 | AC | 4 ms
5,248 KB |
testcase_06 | AC | 4 ms
5,248 KB |
testcase_07 | AC | 5 ms
5,248 KB |
testcase_08 | AC | 5 ms
5,248 KB |
testcase_09 | AC | 4 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 4 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
ソースコード
#include<iostream> #include<fstream> #include<sstream> #include<string> #include<cstdio> #include<cstdlib> #include<cstring> #include<ctime> #include<stack> #include<queue> #include<set> #include<map> #include<vector> #include<list> #include<algorithm> #include<utility> #include<complex> #include<functional> using namespace std; typedef pair<int, int> P; typedef pair<P, P> PP; int H, W; int M[110][110]; vector<list<P>> cd; #define mp(a,b,c,d) make_pair( make_pair((a),(b)),make_pair((c),(d)) ) #define dir(xx,yy,x,y,i)(xx)=(x)+dir[(i)],(yy)=(y)+dir[(i)+1]; const int dir[] = { 0, 1, 0, -1, 0 }; bool bfs(int c){ //cout << c << endl; queue<PP> que; for (auto &u : cd[c]) if(M[u.first][u.second]==c){ que.push(mp(u.first, u.second, -1, -1)); M[u.first][u.second] *= -1; while (que.empty() == false){ auto v = que.front(); que.pop(); for (int i = 0; i < 4; i++){ int xx, yy; dir(xx, yy, v.first.first, v.first.second, i); if ((xx != v.second.first) || (yy != v.second.second)){ if (M[xx][yy] == -c){ return true; } if (M[xx][yy] == c){ M[xx][yy] *= -1; que.push(mp(xx, yy, v.first.first, v.first.second)); } } } } } return false; } int main(void){ cd.resize(1010); cin >> W >> H; for (int i = 1; i <=H; i++) { for (int j = 1; j <= W; j++) { cin >> M[i][j]; cd[M[i][j]].push_back(make_pair(i, j)); } } for (int i = 1; i <= 1000; i++) if (cd[i].size() >= 4) if (bfs(i)) { cout << "possible" << endl; return 0; } cout << "impossible" << endl; return 0; }