結果
問題 | No.697 池の数はいくつか |
ユーザー | lunnear |
提出日時 | 2018-11-22 15:12:43 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,033 bytes |
コンパイル時間 | 579 ms |
コンパイル使用メモリ | 54,552 KB |
実行使用メモリ | 715,056 KB |
最終ジャッジ日時 | 2024-11-25 14:26:50 |
合計ジャッジ時間 | 13,635 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 1 ms
6,820 KB |
testcase_12 | AC | 1 ms
6,816 KB |
testcase_13 | AC | 1 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 1 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 1 ms
6,820 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 1 ms
6,820 KB |
testcase_21 | AC | 1 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 170 ms
6,816 KB |
testcase_25 | AC | 172 ms
6,820 KB |
testcase_26 | AC | 173 ms
6,820 KB |
testcase_27 | AC | 170 ms
6,820 KB |
testcase_28 | AC | 170 ms
6,816 KB |
testcase_29 | MLE | - |
testcase_30 | AC | 1,550 ms
11,864 KB |
testcase_31 | MLE | - |
testcase_32 | AC | 1,554 ms
11,880 KB |
testcase_33 | AC | 1,530 ms
12,032 KB |
testcase_34 | AC | 1,524 ms
11,904 KB |
ソースコード
#include <iostream> enum State { None = -1, Field, Lake, Lake_Check, }; bool ChechLake(short x, short y, char *s, const int *h, const int *w) { if(s[x + y * (*w)] != (char)State::Lake) return false; s[x + y * (*w)] = (char)State::Lake_Check; if(x < ((*w) - 1)) ChechLake(x + 1, y, s, h, w); if(x > 0) ChechLake(x - 1, y, s, h, w); if(y < ((*h) - 1)) ChechLake(x, y + 1, s, h, w); if(y > 0) ChechLake(x, y - 1, s, h, w); return true; } int main() { int h, w; std::cin >> h >> w; char *s = new char[h * w]; for(int i = 0; i < (h * w); i++) { int a; std::cin >> a; s[i] = (char)a; } int count = 0; for(short y = 0; y < h; y++) { for(short x = 0; x < w; x++) { if(ChechLake(x, y, s, &h, &w)) count++; } } std::cout << count << std::endl; delete[] s; return 0; }