結果
問題 | No.13 囲みたい! |
ユーザー | FF256grhy |
提出日時 | 2015-05-28 20:24:34 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,076 bytes |
コンパイル時間 | 164 ms |
コンパイル使用メモリ | 22,784 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 10:43:31 |
合計ジャッジ時間 | 769 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,248 KB |
testcase_02 | AC | 0 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d%d", &w, &h); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:12:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d", &f[i][j]); | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int search(int, int); int w, h, f[102][102]; // 番兵 int main(void) { scanf("%d%d", &w, &h); int i, j; for(i = 1; i <= h; i++) { for(j = 1; j <= w; j++) { scanf("%d", &f[i][j]); } } int flag = 0; for(i = 1; i <= h; i++) { for(j = 1; j <= w; j++) { if( search(i, j) ) { flag = 1; break; } } if(flag) { break; } } printf("%spossible\n", flag ? "" : "im"); return 0; } int search(int i, int j) { if(1000 < f[i][j]) { return 0; } // 値が1000より大きければ訪問済み f[i][j] += 1000; // 4近傍の中に現在マスと同じ値の訪問済みのマスが2つ以上あればpossible if( 2 <= (f[i][j] == f[i + 1][j]) + (f[i][j] == f[i - 1][j]) + (f[i][j] == f[i][j + 1]) + (f[i][j] == f[i][j - 1]) ) { return 1; } if(f[i][j] - 1000 == f[i + 1][j] && search(i + 1, j) ) { return 1; } if(f[i][j] - 1000 == f[i - 1][j] && search(i - 1, j) ) { return 1; } if(f[i][j] - 1000 == f[i][j + 1] && search(i, j + 1) ) { return 1; } if(f[i][j] - 1000 == f[i][j - 1] && search(i, j - 1) ) { return 1; } return 0; }