結果

問題 No.408 五輪ピック
ユーザー 37zigen37zigen
提出日時 2016-08-06 02:11:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 640 ms / 5,000 ms
コード長 3,879 bytes
コンパイル時間 3,788 ms
コンパイル使用メモリ 95,048 KB
実行使用メモリ 51,944 KB
最終ジャッジ日時 2024-04-24 17:29:25
合計ジャッジ時間 15,083 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,372 KB
testcase_01 AC 96 ms
40,364 KB
testcase_02 AC 105 ms
40,408 KB
testcase_03 AC 107 ms
41,044 KB
testcase_04 AC 108 ms
40,832 KB
testcase_05 AC 561 ms
48,388 KB
testcase_06 AC 227 ms
49,252 KB
testcase_07 AC 257 ms
50,080 KB
testcase_08 AC 377 ms
49,884 KB
testcase_09 AC 310 ms
49,804 KB
testcase_10 AC 289 ms
49,860 KB
testcase_11 AC 240 ms
48,548 KB
testcase_12 AC 348 ms
50,580 KB
testcase_13 AC 564 ms
48,388 KB
testcase_14 AC 231 ms
47,908 KB
testcase_15 AC 640 ms
48,220 KB
testcase_16 AC 469 ms
50,400 KB
testcase_17 AC 362 ms
49,204 KB
testcase_18 AC 282 ms
49,220 KB
testcase_19 AC 289 ms
49,216 KB
testcase_20 AC 283 ms
49,332 KB
testcase_21 AC 217 ms
47,872 KB
testcase_22 AC 332 ms
50,208 KB
testcase_23 AC 627 ms
50,476 KB
testcase_24 AC 393 ms
49,316 KB
testcase_25 AC 457 ms
48,420 KB
testcase_26 AC 322 ms
51,944 KB
testcase_27 AC 436 ms
48,352 KB
testcase_28 AC 406 ms
48,760 KB
testcase_29 AC 359 ms
50,256 KB
testcase_30 AC 106 ms
40,448 KB
testcase_31 AC 105 ms
41,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package No400番台;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Random;
import java.util.Scanner;
public class Main {
	static InputStream is;
	static PrintWriter out;
	static String INPUT = "";


	public static void main(String[] args) throws Exception
	{
		is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
		out = new PrintWriter(System.out);

		solver();
		out.flush();
	}

	static long nl()
	{
		try {
			long num = 0;
			boolean minus = false;
			while((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-'));
			if(num == '-'){
				num = 0;
				minus = true;
			}else{
				num -= '0';
			}

			while(true){
				int b = is.read();
				if(b >= '0' && b <= '9'){
					num = num * 10 + (b - '0');
				}else{
					return minus ? -num : num;
				}
			}
		} catch (IOException e) {
		}
		return -1;
	}

	static char nc()
	{
		try {
			int b = skip();
			if(b == -1)return 0;
			return (char)b;
		} catch (IOException e) {
		}
		return 0;
	}

	static double nd()
	{
		try {
			return Double.parseDouble(ns());
		}catch(Exception e) {
		}
		return 0;
	}

	static String ns()
	{
		try{
			int b = skip();
			StringBuilder sb = new StringBuilder();
			if(b == -1)return "";
			sb.append((char)b);
			while(true){
				b = is.read();
				if(b == -1)return sb.toString();
				if(b <= ' ')return sb.toString();
				sb.append((char)b);
			}
		} catch (IOException e) {
		}
		return "";
	}

	public static char[] ns(int n)
	{
		char[] buf = new char[n];
		try{
			int b = skip(), p = 0;
			if(b == -1)return null;
			buf[p++] = (char)b;
			while(p < n){
				b = is.read();
				if(b == -1 || b <= ' ')break;
				buf[p++] = (char)b;
			}
			return Arrays.copyOf(buf, p);
		} catch (IOException e) {
		}
		return null;
	}

	public static byte[] nse(int n)
	{
		byte[] buf = new byte[n];
		try{
			int b = skip();
			if(b == -1)return null;
			is.read(buf);
			return buf;
		} catch (IOException e) {
		}
		return null;
	}

	static int skip() throws IOException
	{
		int b;
		while((b = is.read()) != -1 && !(b >= 33 && b <= 126));
		return b;
	}

	static boolean eof()
	{
		try {
			is.mark(1000);
			int b = skip();
			is.reset();
			return b == -1;
		} catch (IOException e) {
			return true;
		}
	}

	static int ni()
	{
		try {
			int num = 0;
			boolean minus = false;
			while((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-'));
			if(num == '-'){
				num = 0;
				minus = true;
			}else{
				num -= '0';
			}

			while(true){
				int b = is.read();
				if(b >= '0' && b <= '9'){
					num = num * 10 + (b - '0');
				}else{
					return minus ? -num : num;
				}
			}
		} catch (IOException e) {
		}
		return -1;
	}

	static void solver() {
		Scanner sc = new Scanner(System.in);
		int n = ni();
		int m = ni();
		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 =ni() - 1;
			int b = ni() - 1;
			e[a].add(b);
			e[b].add(a);
		}
		int[] col = new int[n];
		boolean ans = false;
		for (int i = 0; i < 50; i++) {
			Random rand = new Random();
			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;
						}
					}
				}
			}
		}
		out.println(ans ? "YES" : "NO");
	}
}
0