結果

問題 No.1147 土偶Ⅱ
ユーザー face4face4
提出日時 2020-08-05 19:46:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 106 ms / 500 ms
コード長 1,348 bytes
コンパイル時間 2,308 ms
コンパイル使用メモリ 77,160 KB
実行使用メモリ 52,140 KB
最終ジャッジ日時 2024-10-11 10:12:34
合計ジャッジ時間 4,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,188 KB
testcase_01 AC 53 ms
50,280 KB
testcase_02 AC 54 ms
50,152 KB
testcase_03 AC 53 ms
50,192 KB
testcase_04 AC 74 ms
51,268 KB
testcase_05 AC 52 ms
49,804 KB
testcase_06 AC 93 ms
51,168 KB
testcase_07 AC 106 ms
52,140 KB
testcase_08 AC 57 ms
50,164 KB
testcase_09 AC 89 ms
51,264 KB
testcase_10 AC 76 ms
50,944 KB
testcase_11 AC 95 ms
51,288 KB
testcase_12 AC 90 ms
51,472 KB
testcase_13 AC 62 ms
50,116 KB
testcase_14 AC 98 ms
51,760 KB
testcase_15 AC 92 ms
51,224 KB
testcase_16 AC 66 ms
50,800 KB
testcase_17 AC 53 ms
50,056 KB
testcase_18 AC 56 ms
50,264 KB
testcase_19 AC 102 ms
51,660 KB
testcase_20 AC 54 ms
49,860 KB
testcase_21 AC 55 ms
50,160 KB
testcase_22 AC 83 ms
50,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] line = br.readLine().split(" ");
        int n = Integer.parseInt(line[0]);
        int m = Integer.parseInt(line[1]);
        int x[][] = new int[n][n];
        for(int i = 0; i < n; i++){
            for(int j = 0; j < n; j++){
                x[i][j] = i==j ? 0 : 1<<30;
            }
        }
        while(m-- > 0){
            line = br.readLine().split(" ");
            int a = Integer.parseInt(line[0])-1;
            int b = Integer.parseInt(line[1])-1;
            x[a][b] = x[b][a] = 1;
        }
        for(int k = 0; k < n; k++){
            for(int i = 0; i < n; i++){
                if(x[i][k] == 1<<30)    continue;
                for(int j = 0; j < n; j++){
                    if(x[k][j] != 1<<30)    x[i][j] = Math.min(x[i][j], x[i][k]+x[k][j]);
                }
            }
        }
        int ans = 0;
        for(int i = 0; i < n; i++){
            for(int j = i+1; j < n; j++){
                if(x[i][j] == 2) continue;
                for(int k = j+1; k < n; k++){
                    if(x[i][k] != 2 && x[j][k] != 2)    ans++;
                }
            }
        }
        System.out.println(ans);
    }
}
0