結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 1 ms
6,944 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 1 ms
6,940 KB
testcase_24 AC 116 ms
9,204 KB
testcase_25 AC 117 ms
9,628 KB
testcase_26 AC 116 ms
9,960 KB
testcase_27 AC 116 ms
10,040 KB
testcase_28 AC 116 ms
9,916 KB
testcase_29 MLE -
testcase_30 AC 1,023 ms
19,072 KB
testcase_31 AC 1,110 ms
299,644 KB
testcase_32 AC 1,027 ms
18,976 KB
testcase_33 AC 1,022 ms
19,204 KB
testcase_34 AC 1,024 ms
19,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:26:21: warning: format ‘%d’ expects argument of type ‘int*’, but argument 2 has type ‘bool*’ [-Wformat=]
   26 |             scanf("%d", &f[i][j]);
      |                    ~^   ~~~~~~~~
      |                     |   |
      |                     |   bool*
      |                     int*
main.cpp:23:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 |     scanf("%d %d", &h, &w);
      |     ~~~~~^~~~~~~~~~~~~~~~~
main.cpp:26:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   26 |             scanf("%d", &f[i][j]);
      |             ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
bool f[3001][3001];
bool c[3001][3001];
int ans=0;
int h,w;

void check(int i,int j,bool aa){
    if ((i<0)||(i>=h)) return;
    if ((j<0)||(j>=w)) return;
    if (c[i][j]) return;
    else if (!f[i][j]) return;
    else if (aa) {
        ++ans;
    }
    c[i][j]=true;
    check(i-1,j,false);
    check(i+1,j,false);
    check(i,j-1,false);
    check(i,j+1,false);
}

int main() {
    scanf("%d %d", &h, &w);
    for (int i=0;i<h;i++) {
        for (int j=0;j<w;j++) {
            scanf("%d", &f[i][j]);
            c[i][j]=false;
        }
    }

    for (int i=0;i<h;i++) {
        for (int j=0;j<w;j++) {
            check(i,j,true);
        }
    }
    printf("%d\n",ans);
    return 0;
}
0