結果

問題 No.1640 簡単な色塗り
ユーザー fgwiebfaoishfgwiebfaoish
提出日時 2021-08-06 22:03:19
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,999 bytes
コンパイル時間 2,598 ms
コンパイル使用メモリ 113,848 KB
実行使用メモリ 53,468 KB
最終ジャッジ日時 2024-06-29 15:09:51
合計ジャッジ時間 14,415 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
26,036 KB
testcase_01 AC 24 ms
23,908 KB
testcase_02 AC 24 ms
24,156 KB
testcase_03 AC 24 ms
24,236 KB
testcase_04 AC 165 ms
47,320 KB
testcase_05 AC 163 ms
53,468 KB
testcase_06 AC 25 ms
26,044 KB
testcase_07 AC 24 ms
24,240 KB
testcase_08 AC 28 ms
26,168 KB
testcase_09 AC 26 ms
26,088 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 47 ms
34,412 KB
testcase_31 AC 189 ms
44,748 KB
testcase_32 AC 165 ms
42,724 KB
testcase_33 AC 112 ms
39,768 KB
testcase_34 AC 139 ms
43,344 KB
testcase_35 AC 110 ms
37,728 KB
testcase_36 AC 43 ms
30,696 KB
testcase_37 AC 53 ms
31,916 KB
testcase_38 AC 166 ms
41,708 KB
testcase_39 AC 78 ms
36,296 KB
testcase_40 AC 79 ms
34,372 KB
testcase_41 AC 136 ms
39,400 KB
testcase_42 AC 92 ms
36,984 KB
testcase_43 AC 92 ms
38,652 KB
testcase_44 AC 90 ms
37,620 KB
testcase_45 AC 72 ms
36,624 KB
testcase_46 AC 46 ms
33,016 KB
testcase_47 AC 37 ms
29,900 KB
testcase_48 AC 167 ms
46,452 KB
testcase_49 AC 30 ms
26,712 KB
testcase_50 AC 22 ms
23,908 KB
testcase_51 AC 24 ms
24,284 KB
testcase_52 WA -
testcase_53 WA -
07_evil_01.txt WA -
07_evil_02.txt WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Collections;
using System.Collections.Specialized;
using System.Linq;
using System.Text;
using System.IO;
using System.Reflection;
using static System.Math;
using System.Numerics;
using System.Threading;
using System.Runtime.CompilerServices;
static class Program{
	const int mod=(int)1e9+7;
	const long inf=long.MaxValue-1;
	static List<ValueTuple<int,int>>[] li;
	static bool[] b;
	static int[] ans;
	static void Main(){
		Sc sc=new Sc();
		var s=sc.Ia;
		int n=s[0],m=n;
		li=new List<ValueTuple<int,int>>[n+1];
		b=new bool[n+1];
		for(int i=1;i<=n;i++){
			li[i]=new List<ValueTuple<int,int>>();
		}
		for(int i=0;i<m;i++){
			var e=sc.Ia;
			li[e[0]].Add(ValueTuple.Create(e[1],i));
			li[e[1]].Add(ValueTuple.Create(e[0],i));
		}
		ans=new int[n];
		for(int i = 1;i<=n;i++) {
			if(li[i].Count==1){Fu(i);}
		}
		for(int i = 1;i<=n;i++) {
			if(!b[i]){Fu(i);}
		}
		for(int i = 1;i<=n;i++) {
			if(!b[i]){
				Console.WriteLine("No");
				return;
			}
		}
		Console.WriteLine("Yes");
		Console.WriteLine("{0}",string.Join("\n",ans));
	}
	static void Fu(int a){
		for(int i=0;i<li[a].Count;i++){
			if(ans[li[a][i].Item2]==0){
				b[a]=true;
				ans[li[a][i].Item2]=a;
				Fu(li[a][i].Item1);
			}
		}
	}
}

public class Sc{
	public int I{get{return int.Parse(Console.ReadLine());}}
	public long L{get{return long.Parse(Console.ReadLine());}}
	public double D{get{return double.Parse(Console.ReadLine());}}
	public string S{get{return Console.ReadLine();}}
	public int[] Ia{get{return Array.ConvertAll(Console.ReadLine().Split(),int.Parse);}}
	public long[] La{get{return Array.ConvertAll(Console.ReadLine().Split(),long.Parse);}}
	public double[] Da{get{return Array.ConvertAll(Console.ReadLine().Split(),double.Parse);}}
	public string[] Sa{get{return Console.ReadLine().Split();}}
	public object[] Oa{get{return Console.ReadLine().Split();}}
	public int[] Ia2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),int.Parse);}}
	public int[] Ia3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),int.Parse);}
	public long[] La2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),long.Parse);}}
	public long[] La3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),long.Parse);}
	public double[] Da2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),double.Parse);}}
	public double[] Da3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),double.Parse);}
	public T[] Arr<T>(int n,Func<T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f();}return a;}
	public T[] Arr<T>(int n,Func<int,T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i);}return a;}
	public T[] Arr<T>(int n,Func<string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(Console.ReadLine().Split());}return a;}
	public T[] Arr<T>(int n,Func<int,string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i,Console.ReadLine().Split());}return a;}
}
0