結果
問題 | No.1266 7 Colors |
ユーザー | fgwiebfaoish |
提出日時 | 2020-10-23 23:13:51 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 527 ms / 3,000 ms |
コード長 | 3,902 bytes |
コンパイル時間 | 1,555 ms |
コンパイル使用メモリ | 116,128 KB |
実行使用メモリ | 56,328 KB |
最終ジャッジ日時 | 2024-07-21 13:04:40 |
合計ジャッジ時間 | 11,618 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
26,080 KB |
testcase_01 | AC | 27 ms
24,004 KB |
testcase_02 | AC | 28 ms
26,068 KB |
testcase_03 | AC | 356 ms
36,780 KB |
testcase_04 | AC | 493 ms
49,592 KB |
testcase_05 | AC | 378 ms
35,792 KB |
testcase_06 | AC | 505 ms
49,400 KB |
testcase_07 | AC | 527 ms
50,048 KB |
testcase_08 | AC | 506 ms
48,328 KB |
testcase_09 | AC | 459 ms
42,004 KB |
testcase_10 | AC | 450 ms
40,664 KB |
testcase_11 | AC | 395 ms
37,068 KB |
testcase_12 | AC | 425 ms
38,212 KB |
testcase_13 | AC | 428 ms
39,124 KB |
testcase_14 | AC | 373 ms
37,664 KB |
testcase_15 | AC | 525 ms
52,048 KB |
testcase_16 | AC | 413 ms
42,800 KB |
testcase_17 | AC | 518 ms
53,204 KB |
testcase_18 | AC | 371 ms
56,328 KB |
testcase_19 | AC | 369 ms
52,876 KB |
testcase_20 | AC | 369 ms
50,576 KB |
testcase_21 | AC | 250 ms
32,768 KB |
コンパイルメッセージ
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; using System.Threading; using System.Runtime.CompilerServices; static class Program{ const int mod=(int)1e9+7; static List<int>[] li; static bool[] b; static int[] h; static char[][] t; static Uf uf; static void Main(){ Sc sc=new Sc(); var s=sc.Ia; int n=s[0],m=s[1]; li=new List<int>[n+1]; b=new bool[n+1]; h=new int[n+1]; t=new char[n+1][]; uf=new Uf((n+1)*7); for(int i=1;i<=n;i++){ li[i]=new List<int>(); t[i]=sc.S.ToCharArray(); for(int j = 0;j<7;j++) { if(t[i][j]=='1'&&t[i][(j+1)%7]=='1'){ uf.Union(i*7+j,i*7+(j+1)%7); } } } for(int i=0;i<m;i++){ var e=sc.Ia; li[e[0]].Add(e[1]); li[e[1]].Add(e[0]); for(int j = 0;j<7;j++) { if(t[e[0]][j]=='1'&&t[e[1]][j]=='1'){ uf.Union(e[0]*7+j,e[1]*7+j); } } } StringBuilder sb=new StringBuilder(); for(int i = 0;i<s[2];i++) { var e=sc.Ia; if(e[0]==2){ sb.Append(uf.Size(e[1]*7)+"\n"); } else{ t[e[1]][e[2]-1]='1'; if(t[e[1]][e[2]%7]=='1'){ uf.Union(e[1]*7+e[2]-1,e[1]*7+e[2]%7); } if(t[e[1]][(e[2]+5)%7]=='1'){ uf.Union(e[1]*7+e[2]-1,e[1]*7+(e[2]+5)%7); } for(int j=0;j<li[e[1]].Count;j++){ if(t[li[e[1]][j]][e[2]-1]=='1'){ uf.Union(e[1]*7+e[2]-1,li[e[1]][j]*7+e[2]-1); } } } } Console.Write(sb); } static void Fu(int a){ b[a]=true; for(int i=0;i<li[a].Count;i++){ if(!b[li[a][i]]){Fu(li[a][i]);} } } } public class Uf{ private int[] arr,hi; public int all; public Uf(int n){ arr=new int[n]; hi=new int[n]; all=n; for(int i=0;i<n;i++){arr[i]=-1;} } public void Union(int a,int b){ a=Root(a); b=Root(b); if(a!=b){ if(hi[a]<hi[b]){(a,b)=(b,a);} arr[a]+=arr[b]; hi[a]=Max(hi[a],hi[b]+1); arr[b]=a; all--; } } public bool Same(int a,int b){return Root(a)==Root(b);} public int Size(int a){return -arr[Root(a)];} public int Root(int a){return arr[a]<0?a:arr[a]=Root(arr[a]);} } 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;} }