結果

問題 No.1147 土偶Ⅱ
ユーザー face4face4
提出日時 2020-08-05 19:50:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 103 ms / 500 ms
コード長 1,274 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 77,488 KB
実行使用メモリ 51,884 KB
最終ジャッジ日時 2024-10-11 10:12:48
合計ジャッジ時間 4,781 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,232 KB
testcase_01 AC 59 ms
50,136 KB
testcase_02 AC 58 ms
49,956 KB
testcase_03 AC 56 ms
49,900 KB
testcase_04 AC 80 ms
51,404 KB
testcase_05 AC 57 ms
50,472 KB
testcase_06 AC 103 ms
51,068 KB
testcase_07 AC 103 ms
51,532 KB
testcase_08 AC 60 ms
50,220 KB
testcase_09 AC 95 ms
51,000 KB
testcase_10 AC 74 ms
50,996 KB
testcase_11 AC 99 ms
51,884 KB
testcase_12 AC 93 ms
51,196 KB
testcase_13 AC 66 ms
50,296 KB
testcase_14 AC 94 ms
51,444 KB
testcase_15 AC 89 ms
51,300 KB
testcase_16 AC 81 ms
50,732 KB
testcase_17 AC 56 ms
50,004 KB
testcase_18 AC 58 ms
50,024 KB
testcase_19 AC 98 ms
51,620 KB
testcase_20 AC 56 ms
50,140 KB
testcase_21 AC 56 ms
49,852 KB
testcase_22 AC 95 ms
51,336 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<<29;
            }
        }
        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++){
                for(int j = 0; j < n; j++){
                    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