結果

問題 No.488 四角関係
ユーザー jp_stejp_ste
提出日時 2017-05-14 09:34:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,404 ms / 5,000 ms
コード長 1,780 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 78,284 KB
実行使用メモリ 48,804 KB
最終ジャッジ日時 2024-09-16 05:46:06
合計ジャッジ時間 9,908 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 188 ms
43,604 KB
testcase_01 AC 513 ms
46,164 KB
testcase_02 AC 295 ms
45,196 KB
testcase_03 AC 292 ms
44,924 KB
testcase_04 AC 367 ms
45,500 KB
testcase_05 AC 478 ms
45,940 KB
testcase_06 AC 182 ms
43,420 KB
testcase_07 AC 1,404 ms
48,804 KB
testcase_08 AC 334 ms
45,520 KB
testcase_09 AC 130 ms
41,196 KB
testcase_10 AC 191 ms
43,748 KB
testcase_11 AC 142 ms
41,620 KB
testcase_12 AC 313 ms
44,324 KB
testcase_13 AC 201 ms
44,288 KB
testcase_14 AC 144 ms
41,300 KB
testcase_15 AC 118 ms
40,464 KB
testcase_16 AC 132 ms
41,188 KB
testcase_17 AC 131 ms
41,388 KB
testcase_18 AC 136 ms
41,420 KB
testcase_19 AC 138 ms
41,716 KB
testcase_20 AC 132 ms
41,328 KB
testcase_21 AC 126 ms
41,616 KB
testcase_22 AC 135 ms
41,044 KB
testcase_23 AC 135 ms
41,240 KB
testcase_24 AC 139 ms
41,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int n;
    static int m;
    static boolean list[][];
    static ArrayList<int[]> al = new ArrayList<int[]>();
    
    public static void main(String[] args) throws Exception {
        Scanner scan = new Scanner(System.in);
        n = scan.nextInt();
        m = scan.nextInt();
        list = new boolean[n][n];
        for(int i=0; i<m; i++) {
            int left = scan.nextInt();
            int right = scan.nextInt();
            list[left][right] = true;
            list[right][left] = true;
        }
        for(int i=0; i<n; i++) {
            int connect[] = {i, -1, -1, -1};
            solve(connect, 0);
        }
        System.out.println(al.size());
    }
    
    static void solve(int con[], int index) {
        int left = con[index];
        
        if(index == 3) {
            int right = con[0];
            if(list[left][right]) {
                if((!list[con[0]][con[2]]) && (!list[con[1]][con[3]])) {
                    int copy[] = con.clone();
                    Arrays.sort(copy);
                    boolean flag = true;
                    for (int[] i : al) {
                        if (Arrays.equals(i, copy)) {
                            flag = false;
                            break;
                        }
                    }
                    if(flag) {
                        al.add(copy);
                    }
                }
            }
            return;    
        }
        
        for(int right=0; right<n; right++) {
            if(index > 0) {
                if(right == con[index-1]) continue;
            }
            if(list[left][right]) {
                con[index+1] = right;
                solve(con, index+1);
            }
        }
    }
}
0