結果
問題 | No.1153 ねこちゃんゲーム |
ユーザー | fgwiebfaoish |
提出日時 | 2020-08-08 03:32:18 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,902 bytes |
コンパイル時間 | 1,770 ms |
コンパイル使用メモリ | 109,440 KB |
実行使用メモリ | 66,844 KB |
最終ジャッジ日時 | 2024-09-25 06:26:54 |
合計ジャッジ時間 | 34,704 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
23,552 KB |
testcase_01 | AC | 23 ms
17,792 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 661 ms
62,452 KB |
testcase_10 | AC | 640 ms
62,068 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 735 ms
62,328 KB |
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 | AC | 639 ms
62,460 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | TLE | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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; static class Program{ const int mod=(int)1e9+7; static List<int>[] li; static bool[] b; static int[] h,d,oa,g; static void Main(){ Sc sc=new Sc(); var s=sc.Ia; int n=s[0],m=n-1; if(n==1){ Console.WriteLine("-1 -1"); return; } li=new List<int>[n+1]; b=new bool[n+1]; h=new int[n+1]; g=new int[n+1]; d=new int[n+1]; oa=new int[n+1]; var a=sc.Ia; for(int i=1;i<=n;i++){li[i]=new List<int>();} for(int i=0;i<m;i++){ var e=sc.Ia; li[e[0]].Add(e[1]); li[e[1]].Add(e[0]); } int o=1; for(int i = 1;i<=n;i++) { if(li[i].Count==1){ o=i; break; } } Fu(o,0); b=new bool[n+1]; h[0]=mod; g[o]=h[o]; Fu2(li[o][0],0); int ans=0; for(int i = 0;i<s[1];i++) {ans^=g[a[i]];} if(ans==0){Console.WriteLine("-1 -1");} else{ for(int i = 0;i<s[1];i++) { if(oa[a[i]]!=0&&(ans^g[a[i]]^d[a[i]])==0){ Console.WriteLine("{0} {1}",i+1,oa[a[i]]); return; } for(int j = 0;j<li[a[i]].Count;j++) { if(li[a[i]][j]==oa[a[i]]){break;} if((ans^g[a[i]]^h[li[a[i]][j]])==0){ Console.WriteLine("{0} {1}",i+1,li[a[i]][j]); return; } } } } } static void Fu2(int a,int p){ int f=h[oa[a]]; h[oa[a]]=mod; li[a].Sort((u,v)=>h[u]-h[v]); h[oa[a]]=f; d[a]=p; int z=p==0?1:0; for(int i = 0;i<li[a].Count-1;i++) { if(z==p){z++;} if(h[li[a][i]]==z){z++;} else if(h[li[a][i]]>z){break;} } g[a]=z; for(int i = 0;i<li[a].Count-1;i++) { z=h[li[a][i]]; if(z==p){z=g[a];} else if(i!=0&&z==h[li[a][i-1]]){z=g[a];} else if(i!=li[a].Count-2&&z==h[li[a][i+1]]){z=g[a];} if(li[a][i]!=0){Fu2(li[a][i],Min(z,g[a]));} } } static void Fu(int a,int p){ b[a]=true; oa[a]=p; for(int i=0;i<li[a].Count;i++){ if(!b[li[a][i]]){Fu(li[a][i],a);} } for(int i=0;i<li[a].Count;i++){ if(li[a][i]!=p){d[h[li[a][i]]]=a;} } for(int i = 0;;i++) { if(d[i]!=a){ h[a]=i; break; } } } } 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;} }