結果
問題 | No.812 Change of Class |
ユーザー | eSeF |
提出日時 | 2020-07-27 09:12:56 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 818 ms / 4,000 ms |
コード長 | 14,929 bytes |
コンパイル時間 | 1,221 ms |
コンパイル使用メモリ | 123,812 KB |
実行使用メモリ | 44,912 KB |
最終ジャッジ日時 | 2024-06-28 19:59:31 |
合計ジャッジ時間 | 22,007 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 420 ms
40,924 KB |
testcase_01 | AC | 94 ms
35,308 KB |
testcase_02 | AC | 245 ms
39,148 KB |
testcase_03 | AC | 497 ms
42,180 KB |
testcase_04 | AC | 444 ms
43,620 KB |
testcase_05 | AC | 815 ms
43,512 KB |
testcase_06 | AC | 616 ms
39,424 KB |
testcase_07 | AC | 58 ms
28,620 KB |
testcase_08 | AC | 44 ms
27,876 KB |
testcase_09 | AC | 818 ms
44,912 KB |
testcase_10 | AC | 803 ms
44,656 KB |
testcase_11 | AC | 117 ms
40,448 KB |
testcase_12 | AC | 520 ms
44,272 KB |
testcase_13 | AC | 35 ms
28,648 KB |
testcase_14 | AC | 34 ms
24,952 KB |
testcase_15 | AC | 492 ms
39,012 KB |
testcase_16 | AC | 61 ms
32,076 KB |
testcase_17 | AC | 463 ms
37,648 KB |
testcase_18 | AC | 331 ms
37,472 KB |
testcase_19 | AC | 390 ms
38,244 KB |
testcase_20 | AC | 800 ms
42,592 KB |
testcase_21 | AC | 320 ms
37,216 KB |
testcase_22 | AC | 157 ms
34,524 KB |
testcase_23 | AC | 56 ms
34,392 KB |
testcase_24 | AC | 67 ms
32,216 KB |
testcase_25 | AC | 133 ms
34,140 KB |
testcase_26 | AC | 664 ms
41,196 KB |
testcase_27 | AC | 572 ms
38,300 KB |
testcase_28 | AC | 401 ms
38,500 KB |
testcase_29 | AC | 110 ms
32,960 KB |
testcase_30 | AC | 549 ms
39,616 KB |
testcase_31 | AC | 431 ms
37,948 KB |
testcase_32 | AC | 196 ms
35,040 KB |
testcase_33 | AC | 594 ms
40,652 KB |
testcase_34 | AC | 65 ms
32,344 KB |
testcase_35 | AC | 125 ms
33,756 KB |
testcase_36 | AC | 73 ms
32,500 KB |
testcase_37 | AC | 272 ms
36,076 KB |
testcase_38 | AC | 66 ms
29,932 KB |
testcase_39 | AC | 272 ms
36,560 KB |
testcase_40 | AC | 88 ms
33,000 KB |
testcase_41 | AC | 60 ms
30,680 KB |
testcase_42 | AC | 623 ms
39,660 KB |
testcase_43 | AC | 144 ms
37,708 KB |
testcase_44 | AC | 388 ms
37,348 KB |
testcase_45 | AC | 72 ms
30,544 KB |
testcase_46 | AC | 141 ms
29,564 KB |
testcase_47 | AC | 396 ms
33,320 KB |
testcase_48 | AC | 446 ms
30,464 KB |
testcase_49 | AC | 136 ms
25,600 KB |
testcase_50 | AC | 38 ms
20,992 KB |
testcase_51 | AC | 129 ms
26,240 KB |
testcase_52 | AC | 248 ms
29,564 KB |
testcase_53 | AC | 99 ms
25,088 KB |
testcase_54 | AC | 91 ms
24,704 KB |
testcase_55 | AC | 346 ms
32,120 KB |
testcase_56 | AC | 405 ms
35,072 KB |
testcase_57 | AC | 419 ms
35,324 KB |
testcase_58 | AC | 239 ms
29,824 KB |
testcase_59 | AC | 480 ms
36,608 KB |
testcase_60 | AC | 33 ms
19,584 KB |
testcase_61 | AC | 34 ms
19,840 KB |
testcase_62 | AC | 33 ms
19,840 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.Linq; using System.IO; using System.Text; using System.Numerics; using System.Threading; using System.Runtime.CompilerServices; using System.Diagnostics; using static System.Math; using static System.Array; using static AtCoder.Sc_out; using static AtCoder.Tool; using static AtCoder.ModInt; namespace AtCoder { class AC { const int MOD = 1000000007; //const int MOD = 998244353; const int INF = int.MaxValue / 2; const long SINF = long.MaxValue / 2; const double EPS = 1e-8; static readonly int[] dI = { 0, 1, 0, -1, 1, -1, -1, 1 }; static readonly int[] dJ = { 1, 0, -1, 0, 1, 1, -1, -1 }; //static List<List<int>> G = new List<List<int>>(); //static List<List<Edge>> G = new List<List<Edge>>(); //static List<Edge> E = new List<Edge>(); static void Main(string[] args) { //var sw = new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false }; Console.SetOut(sw); var th = new Thread(Run, 1 << 26); th.Start(); th.Join(); //Run(); Console.Out.Flush(); } static void Run() { int Testcase = 1; for (var _ = 0; _ < Testcase; _++) Solve(); } static void Solve() { Cin.Input(out int N, out int M); var G = new List<List<int>>(); for (var i = 0; i < N; i++) G.Add(new List<int>()); for(var i = 0; i < M; i++) { Cin.Input(out int a, out int b); a--;b--; G[a].Add(b); G[b].Add(a); } int Q = Cin.Int; var d = new int[N]; var bfs = new Queue<int>(); for(var _ = 0; _ < Q; _++) { var A = Cin.Int; A--; Fill(d, -1); d[A] = 0; bfs.Clear(); bfs.Enqueue(A); int ans = 0; while (bfs.Any()) { var v = bfs.Dequeue(); ans++; foreach(var nx in G[v]) { if (d[nx] != -1) continue; d[nx] = d[v] + 1; bfs.Enqueue(nx); } } int mx = d.Max(); int day = 0; while ((1 << day) < mx) day++; OutL($"{--ans} {day}"); } } public struct Edge { public int from; public int to; public long dist; public Edge(int t, long c) { from = -1; to = t; dist = c; } public Edge(int f, int t, long c) { from = f; to = t; dist = c; } } } public class Priority_Queue<T> { private List<T> Q; private readonly Comparison<T> Func_Compare; public Priority_Queue(Comparison<T> comp) { Func_Compare = comp; Q = new List<T>(); } private void PushHeap(List<T> list, T item) { int n = list.Count(); list.Add(item); while (n != 0) { int pIndex = (n - 1) / 2; if (Func_Compare(list[n], list[pIndex]) < 0) { Swap(Q, n, pIndex); } else { break; } n = pIndex; } } private void PopHeap(List<T> list) { int n = list.Count() - 1; list[0] = list[n]; list.RemoveAt(n); int cur = 0; int comp; while (2 * cur + 1 <= n - 1) { int c1 = 2 * cur + 1; int c2 = 2 * (cur + 1); if (c1 == n - 1) { comp = c1; } else { comp = Func_Compare(list[c1], list[c2]) < 0 ? c1 : c2; } if (Func_Compare(list[cur], list[comp]) > 0) { Swap(Q, cur, comp); } else { break; } cur = comp; } } private void Swap(List<T> list, int a, int b) { T keep = list[a]; list[a] = list[b]; list[b] = keep; } public void Enqueue(T value) { PushHeap(Q, value); } public T Dequeue() { T ret = Q[0]; PopHeap(Q); return ret; } public T Peek() { return Q[0]; } public int Count() { return Q.Count(); } public bool Any() { return Q.Any(); } } public class SegmentTree<T> { //1-indexed type int n; T[] Tree; Func<T, T, T> f; T ex; int L; [MethodImpl(MethodImplOptions.AggressiveInlining)] public SegmentTree(int size, Func<T, T, T> fun, T exvalue) { ex = exvalue; f = fun; n = 1; while (n < size) n <<= 1; Tree = new T[n << 1]; L = (n << 1) - 1; for (var i = 0; i <= L; i++) Tree[i] = ex; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public SegmentTree(int size, Func<T, T, T> fun, T exvalue, T[] initial) { ex = exvalue; n = 1; while (n < size) n <<= 1; f = fun; Tree = new T[n << 1]; L = (n << 1) - 1; for (var i = 0; i <= L; i++) Tree[i] = (n <= i && i <= n + initial.Length - 1) ? initial[i - n] : ex; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public void Set_All() { for (var i = n - 1; i >= 1; i--) Tree[i] = f(Tree[i << 1], Tree[(i << 1) | 1]); } [MethodImpl(MethodImplOptions.AggressiveInlining)] public void Assign(int idx, T nxt) => Tree[idx + n] = nxt; [MethodImpl(MethodImplOptions.AggressiveInlining)] public void Update(int idx) { int now = idx + n; while (now > 1) { now >>= 1; Tree[now] = f(Tree[now << 1], Tree[now << 1 | 1]); } } [MethodImpl(MethodImplOptions.AggressiveInlining)] public void Query_Update(int idx, T nxt) { Assign(idx, nxt); Update(idx); } [MethodImpl(MethodImplOptions.AggressiveInlining)] public void Query_Update_func(int idx, T y) { Assign(idx, f(Peek(idx), y)); Update(idx); } [MethodImpl(MethodImplOptions.AggressiveInlining)] public T Query_Fold(int l, int r) { int L = n + l; int R = n + r; T vL = ex, vR = ex; while (L < R) { if (L % 2 == 1) { vL = f(vL, Tree[L]); L++; } if (R % 2 == 1) { vR = f(Tree[R - 1], vR); R--; } L >>= 1; R >>= 1; } return f(vL, vR); } [MethodImpl(MethodImplOptions.AggressiveInlining)] public T Peek(int idx) => Tree[idx + n]; [MethodImpl(MethodImplOptions.AggressiveInlining)] public void Display(int len) { for (var i = 0; i < len; i++) Console.Write($"{Tree[i + n]} "); Console.WriteLine(); } } public class UnionFind { private int[] parent; private int[] rank; private int[] size; public UnionFind(int n) { parent = new int[n]; rank = new int[n]; size = new int[n]; for (var i = 0; i < n; i++) { parent[i] = i; rank[i] = 0; size[i] = 1; } } public int Root(int x) { return parent[x] == x ? x : parent[x] = Root(parent[x]); } public bool SameRoot(int x, int y) { return Root(x) == Root(y); } public void Unite(int x, int y) { x = Root(x); y = Root(y); if (x == y) { return; } if (rank[x] < rank[y]) { parent[x] = y; size[y] += size[x]; size[x] = 0; } else { parent[y] = x; if (rank[x] == rank[y]) { rank[x]++; } size[x] += size[y]; size[y] = 0; } } public int SizeOf(int x) { return size[Root(x)]; } } struct ModInt { public long value; private const int MOD = 1000000007; //private const int MOD = 998244353; public ModInt(long value) { this.value = value; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static implicit operator ModInt(long a) { var ret = a % MOD; return new ModInt(ret < 0 ? (ret + MOD) : ret); } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static ModInt operator +(ModInt a, ModInt b) => (a.value + b.value); [MethodImpl(MethodImplOptions.AggressiveInlining)] public static ModInt operator -(ModInt a, ModInt b) => (a.value - b.value); [MethodImpl(MethodImplOptions.AggressiveInlining)] public static ModInt operator *(ModInt a, ModInt b) => (a.value * b.value); [MethodImpl(MethodImplOptions.AggressiveInlining)] public static ModInt operator /(ModInt a, ModInt b) => a * Modpow(b, MOD - 2); public static ModInt operator <<(ModInt a, int n) => (a.value << n); public static ModInt operator >>(ModInt a, int n) => (a.value >> n); public static ModInt operator ++(ModInt a) => a.value + 1; public static ModInt operator --(ModInt a) => a.value - 1; [MethodImpl(MethodImplOptions.AggressiveInlining)] public static ModInt Modpow(ModInt a, long n) { var k = a; ModInt ret = 1; while (n > 0) { if ((n & 1) != 0) ret *= k; k *= k; n >>= 1; } return ret; } private static readonly List<long> Factorials = new List<long>() { 1 }; [MethodImpl(MethodImplOptions.AggressiveInlining)] public static ModInt Fac(long n) { for (var i = Factorials.Count(); i <= n; i++) { Factorials.Add((Factorials[i - 1] * i) % MOD); } return Factorials[(int)n]; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static ModInt nCr(long n, long r) { return n < r ? 0 : Fac(n) / (Fac(r) * Fac(n - r)); } public static explicit operator int(ModInt a) => (int)a.value; } static class Cin { public static string[] ReadSplit => Console.ReadLine().Split(); public static int[] ReadSplitInt => ConvertAll(Console.ReadLine().Split(), int.Parse); public static long[] ReadSplitLong => ConvertAll(Console.ReadLine().Split(), long.Parse); public static double[] ReadSplit_Double => ConvertAll(Console.ReadLine().Split(), double.Parse); public static string Str => Console.ReadLine(); public static int Int => int.Parse(Console.ReadLine()); public static long Long => long.Parse(Console.ReadLine()); public static double Double => double.Parse(Console.ReadLine()); public static T Conv<T>(string input) { if (typeof(T).Equals(typeof(ModInt))) { return (T)(dynamic)(long.Parse(input)); } return (T)Convert.ChangeType(input, typeof(T)); } public static void Input<T>(out T a) => a = Conv<T>(Console.ReadLine()); public static void Input<T, U>(out T a, out U b) { var q = ReadSplit; a = Conv<T>(q[0]); b = Conv<U>(q[1]); } public static void Input<T, U, V>(out T a, out U b, out V c) { var q = ReadSplit; a = Conv<T>(q[0]); b = Conv<U>(q[1]); c = Conv<V>(q[2]); } public static void Input<T, U, V, W>(out T a, out U b, out V c, out W d) { var q = ReadSplit; a = Conv<T>(q[0]); b = Conv<U>(q[1]); c = Conv<V>(q[2]); d = Conv<W>(q[3]); } public static void Input<T, U, V, W, X>(out T a, out U b, out V c, out W d, out X e) { var q = ReadSplit; a = Conv<T>(q[0]); b = Conv<U>(q[1]); c = Conv<V>(q[2]); d = Conv<W>(q[3]); e = Conv<X>(q[4]); } } static class Sc_out { public static void OutL(object s) => Console.WriteLine(s); public static void Out_Sep<T>(IEnumerable<T> s) => Console.WriteLine(string.Join(" ", s)); public static void Out_Sep<T>(IEnumerable<T> s, string sep) => Console.WriteLine(string.Join($"{sep}", s)); public static void Out_Sep(params object[] s) => Console.WriteLine(string.Join(" ", s)); public static void Out_One(object s) => Console.Write($"{s} "); public static void Out_One(object s, string sep) => Console.Write($"{s}{sep}"); public static void Endl() => Console.WriteLine(); } public static class Tool { static public void Initialize<T>(ref T[] array, T initialvalue) { array = ConvertAll(array, x => initialvalue); } static public void Swap<T>(ref T a, ref T b) { T keep = a; a = b; b = keep; } static public void Display<T>(T[,] array2d, int n, int m) { for (var i = 0; i < n; i++) { for (var j = 0; j < m; j++) { Console.Write($"{array2d[i, j]} "); } Console.WriteLine(); } } static public long Gcd(long a, long b) { if (a == 0 || b == 0) return Max(a, b); return a % b == 0 ? b : Gcd(b, a % b); } static public long LPow(int a, int b) => (long)Pow(a, b); static public bool Bit(long x, int dig) => ((1L << dig) & x) != 0; static public int Sig(long a) => a == 0 ? 0 : (int)(a / Abs(a)); } }