結果

問題 No.488 四角関係
ユーザー htensaihtensai
提出日時 2019-12-19 14:29:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 1,703 bytes
コンパイル時間 1,978 ms
コンパイル使用メモリ 78,124 KB
実行使用メモリ 52,700 KB
最終ジャッジ日時 2024-07-07 01:09:30
合計ジャッジ時間 4,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
50,912 KB
testcase_01 AC 86 ms
51,428 KB
testcase_02 AC 77 ms
51,452 KB
testcase_03 AC 71 ms
51,116 KB
testcase_04 AC 84 ms
51,856 KB
testcase_05 AC 96 ms
52,184 KB
testcase_06 AC 69 ms
51,500 KB
testcase_07 AC 102 ms
52,300 KB
testcase_08 AC 104 ms
52,700 KB
testcase_09 AC 47 ms
50,284 KB
testcase_10 AC 65 ms
50,544 KB
testcase_11 AC 49 ms
50,340 KB
testcase_12 AC 67 ms
51,168 KB
testcase_13 AC 66 ms
51,112 KB
testcase_14 AC 50 ms
50,336 KB
testcase_15 AC 50 ms
50,032 KB
testcase_16 AC 49 ms
50,164 KB
testcase_17 AC 47 ms
50,076 KB
testcase_18 AC 47 ms
49,912 KB
testcase_19 AC 49 ms
50,268 KB
testcase_20 AC 48 ms
50,328 KB
testcase_21 AC 47 ms
50,304 KB
testcase_22 AC 49 ms
50,296 KB
testcase_23 AC 49 ms
49,936 KB
testcase_24 AC 47 ms
50,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    static HashSet<Integer>[] graph;
    static int n;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int n = Integer.parseInt(first[0]);
        int m = Integer.parseInt(first[1]);
        graph = new HashSet[n];
        for (int i = 0; i < n; i++) {
            graph[i] = new HashSet<Integer>();
        }
        for (int i = 0; i < m; i++) {
            String[] line = br.readLine().split(" ", 2);
            int a = Integer.parseInt(line[0]);
            int b = Integer.parseInt(line[1]);
            graph[a].add(b);
            graph[b].add(a);
        }
        int count = 0;
        for (int i = 0; i < n; i++) {
            if (graph[i].size() < 2) {
                continue;
            }
            for (int x : graph[i]) {
                for (int y : graph[i]) {
                    if (x >= y) {
                        continue;
                    }
                    if (graph[x].contains(y)) {
                        continue;
                    }
                    count += getCount(x, y, i);
                }
            }
        }
        System.out.println(count / 4);
    }
    
    static int getCount(int a, int b, int except) {
        int count = 0;
        for (int i = 0; i < graph.length; i++) {
            if (i == except) {
                continue;
            }
            if (graph[i].contains(a) && graph[i].contains(b) && !graph[i].contains(except)) {
                count++;
            }
        }
        return count;
    }
}
0