結果

問題 No.408 五輪ピック
ユーザー 37zigen37zigen
提出日時 2016-08-06 01:54:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 4,145 ms / 5,000 ms
コード長 1,304 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 80,160 KB
実行使用メモリ 71,292 KB
最終ジャッジ日時 2024-11-07 02:02:03
合計ジャッジ時間 42,903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
52,824 KB
testcase_01 AC 140 ms
54,084 KB
testcase_02 AC 141 ms
53,788 KB
testcase_03 AC 144 ms
54,032 KB
testcase_04 AC 144 ms
53,980 KB
testcase_05 AC 2,900 ms
71,292 KB
testcase_06 AC 828 ms
61,784 KB
testcase_07 AC 983 ms
66,136 KB
testcase_08 AC 1,437 ms
70,396 KB
testcase_09 AC 975 ms
66,908 KB
testcase_10 AC 799 ms
55,520 KB
testcase_11 AC 700 ms
51,144 KB
testcase_12 AC 1,103 ms
60,740 KB
testcase_13 AC 2,617 ms
60,680 KB
testcase_14 AC 548 ms
49,520 KB
testcase_15 AC 2,768 ms
60,676 KB
testcase_16 AC 2,384 ms
60,980 KB
testcase_17 AC 1,291 ms
61,552 KB
testcase_18 AC 1,373 ms
60,976 KB
testcase_19 AC 1,156 ms
61,240 KB
testcase_20 AC 619 ms
50,740 KB
testcase_21 AC 577 ms
49,240 KB
testcase_22 AC 848 ms
50,944 KB
testcase_23 AC 4,145 ms
61,760 KB
testcase_24 AC 1,995 ms
61,008 KB
testcase_25 AC 1,840 ms
60,440 KB
testcase_26 AC 1,149 ms
61,344 KB
testcase_27 AC 2,016 ms
60,556 KB
testcase_28 AC 1,599 ms
60,584 KB
testcase_29 AC 1,472 ms
60,132 KB
testcase_30 AC 135 ms
41,468 KB
testcase_31 AC 132 ms
41,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package No400番台;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Random;
import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		solver();
	}

	static void solver() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		ArrayList<Integer>[] e = new ArrayList[n];
		for (int i = 0; i < n; i++) {
			e[i] = new ArrayList<>();
		}
		for (int i = 0; i < m; i++) {
			int a = sc.nextInt() - 1;
			int b = sc.nextInt() - 1;
			e[a].add(b);
			e[b].add(a);
		}

		boolean ans = false;
		for (int i = 0; i < 200; i++) {
			Random rand = new Random();
			int[] col = new int[n];
			Arrays.fill(col, -1);
			for (int j = 1; j < n; j++) {
				col[j] = rand.nextInt(4);
			}
			boolean[][] dp = new boolean[1 << 4][n];
			dp[0][0] = true;
			for (int s = 0; s < (1 << 4) - 1; s++) {
				for (int v = 0; v < n; v++) {
					if (dp[s][v]) {
						for (int u : e[v]) {
							if (u != 0) {
								int t = s | (1 << col[u]);
								if (t > s) {
									dp[t][u] = true;
								}
							}
						}
					}
				}
			}
			for (int j = 1; j < n; j++) {
				if (dp[(1 << 4) - 1][j]) {
					for (int v : e[j]) {
						if (v == 0) {
							ans = true;
						}
					}
				}
			}
		}
		System.out.println(ans ? "YES" : "NO");
	}
}
0