結果

問題 No.408 五輪ピック
ユーザー 37zigen37zigen
提出日時 2016-08-06 01:38:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,218 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 79,344 KB
実行使用メモリ 71,636 KB
最終ジャッジ日時 2024-11-07 01:51:33
合計ジャッジ時間 43,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
53,944 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 144 ms
54,100 KB
testcase_04 AC 145 ms
54,048 KB
testcase_05 AC 2,830 ms
71,480 KB
testcase_06 WA -
testcase_07 AC 1,000 ms
71,444 KB
testcase_08 AC 1,407 ms
71,156 KB
testcase_09 AC 903 ms
69,928 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1,102 ms
71,496 KB
testcase_13 AC 2,595 ms
71,528 KB
testcase_14 WA -
testcase_15 AC 2,858 ms
71,636 KB
testcase_16 AC 2,325 ms
71,516 KB
testcase_17 AC 1,398 ms
71,432 KB
testcase_18 AC 1,393 ms
71,532 KB
testcase_19 AC 1,226 ms
71,284 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 4,358 ms
71,372 KB
testcase_24 WA -
testcase_25 AC 1,978 ms
71,548 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,601 ms
71,392 KB
testcase_29 AC 1,440 ms
71,376 KB
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
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];
			for (int j = 0; 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 ; 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