結果

問題 No.697 池の数はいくつか
ユーザー greentea011greentea011
提出日時 2018-10-18 17:34:28
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 592 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 432,076 KB
最終ジャッジ日時 2024-05-04 06:17:20
合計ジャッジ時間 8,189 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,812 KB
testcase_01 AC 0 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 0 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 0 ms
6,940 KB
testcase_06 AC 0 ms
6,940 KB
testcase_07 AC 0 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 0 ms
6,940 KB
testcase_11 AC 0 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 0 ms
6,944 KB
testcase_15 AC 0 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 0 ms
6,940 KB
testcase_18 AC 0 ms
6,940 KB
testcase_19 AC 0 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 0 ms
6,940 KB
testcase_24 AC 92 ms
6,944 KB
testcase_25 AC 89 ms
6,944 KB
testcase_26 AC 90 ms
6,940 KB
testcase_27 AC 90 ms
6,944 KB
testcase_28 AC 90 ms
6,940 KB
testcase_29 MLE -
testcase_30 AC 814 ms
10,316 KB
testcase_31 MLE -
testcase_32 AC 828 ms
10,248 KB
testcase_33 AC 808 ms
10,360 KB
testcase_34 AC 802 ms
10,332 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:17:21: warning: format ‘%d’ expects argument of type ‘int*’, but argument 2 has type ‘bool*’ [-Wformat=]
   17 |             scanf("%d", &f[i][j]);
      |                    ~^   ~~~~~~~~
      |                     |   |
      |                     |   bool*
      |                     int*
main.cpp:14:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |     scanf("%d %d", &h, &w);
      |     ~~~~~^~~~~~~~~~~~~~~~~
main.cpp:17:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   17 |             scanf("%d", &f[i][j]);
      |             ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
bool f[3002][3002]={0};
int h,w;

void check(short i,short j){
    if (!f[i][j])return;
    f[i][j]=false;
    check(i-1,j);
    check(i+1,j);
    check(i,j-1);
    check(i,j+1);
}
int main() {
    scanf("%d %d", &h, &w);
    for (short i=1;i<=h;i++) {
        for (short j=1;j<=w;j++) {
            scanf("%d", &f[i][j]);
        }
    }
    
    int ans=0;
    for (short i=1;i<=h;i++) {
        for (short j=1;j<=w;j++) {
            if (f[i][j]) {
                check(i,j);
                ++ans;
            }
        }
    }
    printf("%d\n",ans);
    return 0;
}
0