結果

問題 No.2948 move move rotti
ユーザー ks2mks2m
提出日時 2024-10-25 23:04:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 755 ms / 4,000 ms
コード長 1,752 bytes
コンパイル時間 4,283 ms
コンパイル使用メモリ 78,260 KB
実行使用メモリ 99,212 KB
最終ジャッジ日時 2024-10-25 23:04:24
合計ジャッジ時間 15,763 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,292 KB
testcase_01 AC 140 ms
54,096 KB
testcase_02 AC 142 ms
54,024 KB
testcase_03 AC 229 ms
66,120 KB
testcase_04 AC 565 ms
98,416 KB
testcase_05 AC 133 ms
54,180 KB
testcase_06 AC 157 ms
54,352 KB
testcase_07 AC 521 ms
98,180 KB
testcase_08 AC 755 ms
98,936 KB
testcase_09 AC 207 ms
66,020 KB
testcase_10 AC 138 ms
54,124 KB
testcase_11 AC 137 ms
54,156 KB
testcase_12 AC 156 ms
56,400 KB
testcase_13 AC 586 ms
99,172 KB
testcase_14 AC 609 ms
98,612 KB
testcase_15 AC 209 ms
66,212 KB
testcase_16 AC 238 ms
78,232 KB
testcase_17 AC 211 ms
66,356 KB
testcase_18 AC 242 ms
78,376 KB
testcase_19 AC 235 ms
78,576 KB
testcase_20 AC 584 ms
99,212 KB
testcase_21 AC 745 ms
98,988 KB
testcase_22 AC 546 ms
98,832 KB
testcase_23 AC 652 ms
98,792 KB
testcase_24 AC 600 ms
99,088 KB
testcase_25 AC 555 ms
99,004 KB
testcase_26 AC 143 ms
54,148 KB
testcase_27 AC 135 ms
54,248 KB
testcase_28 AC 170 ms
54,468 KB
testcase_29 AC 134 ms
54,284 KB
testcase_30 AC 175 ms
54,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int k = sc.nextInt();
		int[] x = new int[k];
		for (int i = 0; i < k; i++) {
			x[i] = sc.nextInt() - 1;
		}
		boolean[][] g = new boolean[n][n];
		for (int i = 0; i < m; i++) {
			int u = sc.nextInt() - 1;
			int v = sc.nextInt() - 1;
			g[u][v] = true;
			g[v][u] = true;
		}
		sc.close();

		boolean all = true;
		for (int i = 1; i < k; i++) {
			if (x[i] != x[0]) {
				all = false;
				break;
			}
		}
		if (all) {
			System.out.println("Yes");
			return;
		}

		Set<Integer> set = new HashSet<>();
		for (int i = 0; i < k; i++) {
			set.add(x[i]);
		}

		int n2 = 1 << n;
		boolean[][][] b = new boolean[n][n][n2];
		for (int i = 0; i < n; i++) {
			b[i][i][1 << i] = true;
		}
		for (int t = 0; t < n - 1; t++) {
			boolean[][][] b2 = new boolean[n][n][n2];
			for (int i = 0; i < n; i++) {
				for (int j = 0; j < n; j++) {
					for (int a = 0; a < n2; a++) {
						if ((a >> j & 1) == 1 && b[i][j][a]) {
							for (int j2 = 0; j2 < n; j2++) {
								if (g[j][j2] && (a >> j2 & 1) == 0) {
									int a2 = a | (1 << j2);
									b2[i][j2][a2] = true;
								}
							}
						}
					}
				}
			}
			for (int j = 0; j < n; j++) {
				boolean flg = true;
				for (int i : set) {
					boolean flg2 = false;
					for (int a = 0; a < n2; a++) {
						if (b2[i][j][a]) {
							flg2 = true;
							break;
						}
					}
					if (!flg2) {
						flg = false;
						break;
					}
				}
				if (flg) {
					System.out.println("Yes");
					return;
				}
			}
			b = b2;
		}
		System.out.println("No");
	}
}
0