結果

問題 No.408 五輪ピック
ユーザー KilisameKilisame
提出日時 2016-09-08 12:44:10
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,972 bytes
コンパイル時間 1,907 ms
コンパイル使用メモリ 78,788 KB
実行使用メモリ 67,928 KB
最終ジャッジ日時 2024-04-27 17:57:43
合計ジャッジ時間 16,696 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,092 KB
testcase_01 AC 103 ms
52,624 KB
testcase_02 AC 118 ms
54,268 KB
testcase_03 AC 102 ms
52,876 KB
testcase_04 AC 101 ms
52,688 KB
testcase_05 AC 411 ms
62,500 KB
testcase_06 AC 322 ms
60,468 KB
testcase_07 AC 388 ms
60,664 KB
testcase_08 AC 366 ms
60,252 KB
testcase_09 AC 368 ms
58,292 KB
testcase_10 AC 328 ms
60,280 KB
testcase_11 AC 309 ms
58,552 KB
testcase_12 AC 413 ms
62,352 KB
testcase_13 AC 422 ms
61,984 KB
testcase_14 AC 241 ms
57,256 KB
testcase_15 AC 413 ms
61,384 KB
testcase_16 AC 431 ms
62,188 KB
testcase_17 AC 462 ms
60,860 KB
testcase_18 AC 435 ms
60,512 KB
testcase_19 AC 450 ms
62,208 KB
testcase_20 AC 258 ms
57,584 KB
testcase_21 AC 256 ms
57,384 KB
testcase_22 AC 297 ms
60,404 KB
testcase_23 AC 456 ms
61,744 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner cin = new Scanner(System.in);
        String line = cin.nextLine();
        String[] splitedLine = line.split(" ");
        int n = Integer.parseInt(splitedLine[0]);
        if (n < 5) {
            /* 最低5頂点なければ長さ5の単純閉路は作れない */
            exit(false);
        }
        int m = Integer.parseInt(splitedLine[1]);
        if (m < 5) {
            /* 最低5辺なければ長さ5の単純閉路は作れない */
            exit(false);
        }
        List<Integer>[] sideListArray = new List[n];
        for (int i = 0; i < m; i++) {
            line = cin.nextLine();
            splitedLine = line.split(" ");
            int a = Integer.parseInt(splitedLine[0]) - 1;
            int b = Integer.parseInt(splitedLine[1]) - 1;
            if (sideListArray[a] == null) {
                sideListArray[a] = new ArrayList<Integer>();
            }
            sideListArray[a].add(b);
            if (sideListArray[b] == null) {
                sideListArray[b] = new ArrayList<Integer>();
            }
            sideListArray[b].add(a);
        }
        cin.close();
        if (sideListArray[0].size() < 2) {
            /* 頂点1から異なる2頂点への辺が存在しない場合、頂点1を含む単純閉路は作れない */
            exit(false);
        }
        for (int i = 0; i < sideListArray[0].size(); i++) {
            for (int j = i + 1; j < sideListArray[0].size(); j++) {
                /* 頂点1からたどれる2点a,bを取り出す */
                int a = sideListArray[0].get(i);
                int b = sideListArray[0].get(j);
                for (int c : sideListArray[a]) {
                    /* aからたどれる頂点のうち、1でもbでもない点cを取り出す */
                    if (c == 0 || c == b) {
                        continue;
                    }
                    for (int d : sideListArray[b]) {
                        /* bからたどれる頂点のうち、1でもaでもcでもない点dを取り出す */
                        if (d == 0 || d == a || d == c) {
                            continue;
                        }
                        if (sideListArray[c].contains(d)) {
                            /* cからdへとつながる辺があれば、1-a-c-d-b-1という長さ5の単純閉路が存在していることになる */
                            exit(true);
                        }
                    }
                }
            }
        }
        /* 全探索を終えてもみつからなければ、無し。 */
        exit(false);
    }

    private static void exit(boolean result) {
        if (result) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
        System.exit(0);
    }
}
0