結果

問題 No.1340 おーじ君をさがせ
ユーザー fairy_lettucefairy_lettuce
提出日時 2021-01-15 23:38:44
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 601 ms / 2,000 ms
コード長 9,988 bytes
コンパイル時間 3,923 ms
コンパイル使用メモリ 109,412 KB
実行使用メモリ 31,536 KB
最終ジャッジ日時 2023-08-18 16:48:04
合計ジャッジ時間 17,106 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
22,848 KB
testcase_01 AC 62 ms
21,020 KB
testcase_02 AC 61 ms
21,008 KB
testcase_03 AC 62 ms
20,916 KB
testcase_04 AC 60 ms
18,860 KB
testcase_05 AC 61 ms
20,944 KB
testcase_06 AC 61 ms
20,800 KB
testcase_07 AC 62 ms
22,844 KB
testcase_08 AC 65 ms
18,868 KB
testcase_09 AC 63 ms
20,796 KB
testcase_10 AC 62 ms
22,916 KB
testcase_11 AC 162 ms
22,480 KB
testcase_12 AC 77 ms
22,996 KB
testcase_13 AC 141 ms
20,100 KB
testcase_14 AC 270 ms
23,488 KB
testcase_15 AC 234 ms
25,112 KB
testcase_16 AC 73 ms
20,936 KB
testcase_17 AC 122 ms
19,624 KB
testcase_18 AC 171 ms
20,192 KB
testcase_19 AC 65 ms
18,748 KB
testcase_20 AC 62 ms
22,776 KB
testcase_21 AC 171 ms
25,072 KB
testcase_22 AC 342 ms
24,988 KB
testcase_23 AC 173 ms
25,136 KB
testcase_24 AC 601 ms
27,328 KB
testcase_25 AC 79 ms
24,804 KB
testcase_26 AC 72 ms
22,844 KB
testcase_27 AC 69 ms
20,796 KB
testcase_28 AC 82 ms
22,844 KB
testcase_29 AC 66 ms
20,864 KB
testcase_30 AC 180 ms
26,996 KB
testcase_31 AC 597 ms
31,536 KB
testcase_32 AC 571 ms
29,260 KB
testcase_33 AC 563 ms
29,240 KB
testcase_34 AC 509 ms
30,576 KB
testcase_35 AC 601 ms
29,664 KB
testcase_36 AC 61 ms
18,956 KB
testcase_37 AC 69 ms
22,836 KB
testcase_38 AC 601 ms
29,428 KB
testcase_39 AC 203 ms
26,380 KB
testcase_40 AC 209 ms
26,496 KB
testcase_41 AC 210 ms
26,584 KB
testcase_42 AC 62 ms
18,736 KB
testcase_43 AC 61 ms
21,012 KB
testcase_44 AC 60 ms
18,896 KB
testcase_45 AC 62 ms
20,896 KB
testcase_46 AC 170 ms
23,804 KB
testcase_47 AC 175 ms
22,004 KB
testcase_48 AC 186 ms
22,048 KB
testcase_49 AC 189 ms
22,000 KB
testcase_50 AC 190 ms
22,176 KB
testcase_51 AC 189 ms
22,104 KB
testcase_52 AC 308 ms
23,492 KB
testcase_53 AC 301 ms
21,456 KB
testcase_54 AC 309 ms
25,524 KB
testcase_55 AC 250 ms
22,788 KB
testcase_56 AC 61 ms
20,996 KB
testcase_57 AC 62 ms
21,012 KB
testcase_58 AC 61 ms
18,964 KB
testcase_59 AC 132 ms
23,424 KB
testcase_60 AC 61 ms
23,004 KB
testcase_61 AC 133 ms
23,484 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.IO;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Runtime.CompilerServices;
using System.Text;
using System.Globalization;
using System.Threading;

using static System.Math;

namespace FertiLib.Contest.F
{
	public class Solver
	{
		Scanner sr;
		StreamWriter sw;

		bool isMultipleTestCases = false;

		public void Solve()
		{
			var (n, m, t) = sr.ReadValue<int, int, long>();
			var (a, b) = sr.ReadValueArray<int, int>(m);
			var vec = new Matrix(n, 1);
			vec[0, 0] = 1;
			var matrix = new Matrix(n, n);
			for (int i = 0; i < m; i++)
			{
				matrix[b[i], a[i]] = 1;
			}
			var ans = Matrix.Pow(matrix, t) * vec;
			var ansc = 0;
			for (int i = 0; i < n; i++)
			{
				if (ans[i, 0] == 1) ansc++;
			}
			Console.WriteLine(ansc);
		}

		public Solver(Scanner cin, StreamWriter cout)
		{
			this.sr = cin;
			this.sw = cout;
		}

		public void Start()
		{
			int _t = 1;
			if (isMultipleTestCases) _t = sr.ReadInt();
			while (_t-- > 0) Solve();
		}

		public static void YESNO(bool condition) => Console.WriteLine(condition ? "YES" : "NO");
		public static void YesNo(bool condition) => Console.WriteLine(condition ? "Yes" : "No");
		public static void yesno(bool condition) => Console.WriteLine(condition ? "yes" : "no");
	}

	class Matrix
	{
		int row;
		int column;
		public long[] value;

		public Matrix(int r, int c)
		{
			value = new long[r * c];
			row = r;
			column = c;
		}

		public long this[int r, int c]
		{
			get { return this.value[r * column + c]; }
			set { this.value[r * column + c] = value; }
		}

		public static Matrix operator *(Matrix l, Matrix r)
		{
			if (l.column != r.row) throw new ArgumentException();
			var ret = new Matrix(l.row, r.column);
			for (int i = 0; i < l.row; i++)
			{
				for (int j = 0; j < r.column; j++)
				{
					for (int k = 0; k < l.column; k++)
					{
						ret[i, j] |= l[i, k] & r[k, j];
					}
				}
			}
			return ret;
		}

		public Matrix Pow(long n) => Pow(this, n);

		public static Matrix Pow(Matrix x, long n)
		{
			if (x.column != x.row) throw new ArgumentException();
			var ret = new Matrix(x.column, x.column);
			for (int i = 0; i < x.column; i++)
			{
				ret[i, i] = 1;
			}

			for (long i = 1; i <= n; i *= 2, x *= x)
			{
				if (n / i % 2 == 1) ret *= x;
			}

			return ret;
		}
	}

	public static class Program
	{
		public static void Main(string[] args)
		{
			var sw = new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
			Console.SetOut(sw);
			var cin = new Scanner();
			var solver = new Solver(cin, sw);
			solver.Start();
			Console.Out.Flush();
		}
	}

	public static class Extention
	{
		public static string Join<T>(this IEnumerable<T> x, string separator = "") => string.Join(separator, x);

		public static int UpperBound<T>(this IList<T> list, T value) => list.BinarySearch(value, true, 0, list.Count, Comparer<T>.Default);
		public static int LowerBound<T>(this IList<T> list, T value) => list.BinarySearch(value, false, 0, list.Count, Comparer<T>.Default);
		public static int BinarySearch<T>(this IList<T> list, T value, bool isUpperBound, int index, int length, Comparer<T> comparer)
		{
			var ng = index - 1;
			var ok = index + length;
			while (ok - ng > 1)
			{
				var mid = ng + (ok - ng) / 2;
				var res = comparer.Compare(list[mid], value);
				if (res < 0 || (isUpperBound && res == 0)) ng = mid;
				else ok = mid;
			}
			return ok;
		}

		public static bool Chmax<T>(ref this T a, T b) where T : struct, IComparable<T>
		{
			if (a.CompareTo(b) >= 0) return false;
			a = b;
			return true;
		}
		public static bool Chmin<T>(ref this T a, T b) where T : struct, IComparable<T>
		{
			if (a.CompareTo(b) <= 0) return false;
			a = b;
			return true;
		}
	}

	public class Scanner
	{
		string[] s;
		int i;

		char[] separator = new char[] { ' ' };

		public Scanner()
		{
			s = new string[0];
			i = 0;
		}

		public string Read() => ReadString();

		public string ReadString()
		{
			if (i < s.Length) return s[i++];
			string st = Console.ReadLine();
			while (st == "") st = Console.ReadLine();
			s = st.Split(separator, StringSplitOptions.RemoveEmptyEntries);
			if (s.Length == 0) return ReadString();
			i = 0;
			return s[i++];
		}

		public string[] ReadStringArray(int N)
		{
			string[] Array = new string[N];
			for (int i = 0; i < N; i++)
			{
				Array[i] = ReadString();
			}
			return Array;
		}

		public int ReadInt() => int.Parse(ReadString());

		public int[] ReadIntArray(int N, int add = 0)
		{
			int[] Array = new int[N];
			for (int i = 0; i < N; i++)
			{
				Array[i] = ReadInt() + add;
			}
			return Array;
		}

		public long ReadLong() => long.Parse(ReadString());

		public long[] ReadLongArray(int N, long add = 0)
		{
			long[] Array = new long[N];
			for (int i = 0; i < N; i++)
			{
				Array[i] = ReadLong() + add;
			}
			return Array;
		}

		public double ReadDouble() => double.Parse(ReadString());

		public double[] ReadDoubleArray(int N, double add = 0)
		{
			double[] Array = new double[N];
			for (int i = 0; i < N; i++)
			{
				Array[i] = ReadDouble() + add;
			}
			return Array;
		}

		public T1 ReadValue<T1>() => (T1)Convert.ChangeType(ReadString(), typeof(T1));

		public (T1, T2) ReadValue<T1, T2>()
		{
			var inputs = ReadStringArray(2);
			var v1 = (T1)Convert.ChangeType(inputs[0], typeof(T1));
			var v2 = (T2)Convert.ChangeType(inputs[1], typeof(T2));
			return (v1, v2);
		}

		public (T1, T2, T3) ReadValue<T1, T2, T3>()
		{
			var inputs = ReadStringArray(3);
			var v1 = (T1)Convert.ChangeType(inputs[0], typeof(T1));
			var v2 = (T2)Convert.ChangeType(inputs[1], typeof(T2));
			var v3 = (T3)Convert.ChangeType(inputs[2], typeof(T3));
			return (v1, v2, v3);
		}

		public (T1, T2, T3, T4) ReadValue<T1, T2, T3, T4>()
		{
			var inputs = ReadStringArray(4);
			var v1 = (T1)Convert.ChangeType(inputs[0], typeof(T1));
			var v2 = (T2)Convert.ChangeType(inputs[1], typeof(T2));
			var v3 = (T3)Convert.ChangeType(inputs[2], typeof(T3));
			var v4 = (T4)Convert.ChangeType(inputs[3], typeof(T4));
			return (v1, v2, v3, v4);
		}

		public (T1, T2, T3, T4, T5) ReadValue<T1, T2, T3, T4, T5>()
		{
			var inputs = ReadStringArray(5);
			var v1 = (T1)Convert.ChangeType(inputs[0], typeof(T1));
			var v2 = (T2)Convert.ChangeType(inputs[1], typeof(T2));
			var v3 = (T3)Convert.ChangeType(inputs[2], typeof(T3));
			var v4 = (T4)Convert.ChangeType(inputs[3], typeof(T4));
			var v5 = (T5)Convert.ChangeType(inputs[4], typeof(T5));
			return (v1, v2, v3, v4, v5);
		}

		public (T1, T2, T3, T4, T5, T6) ReadValue<T1, T2, T3, T4, T5, T6>()
		{
			var inputs = ReadStringArray(6);
			var v1 = (T1)Convert.ChangeType(inputs[0], typeof(T1));
			var v2 = (T2)Convert.ChangeType(inputs[1], typeof(T2));
			var v3 = (T3)Convert.ChangeType(inputs[2], typeof(T3));
			var v4 = (T4)Convert.ChangeType(inputs[3], typeof(T4));
			var v5 = (T5)Convert.ChangeType(inputs[4], typeof(T5));
			var v6 = (T6)Convert.ChangeType(inputs[5], typeof(T6));
			return (v1, v2, v3, v4, v5, v6);
		}

		public (T1, T2, T3, T4, T5, T6, T7) ReadValue<T1, T2, T3, T4, T5, T6, T7>()
		{
			var inputs = ReadStringArray(7);
			var v1 = (T1)Convert.ChangeType(inputs[0], typeof(T1));
			var v2 = (T2)Convert.ChangeType(inputs[1], typeof(T2));
			var v3 = (T3)Convert.ChangeType(inputs[2], typeof(T3));
			var v4 = (T4)Convert.ChangeType(inputs[3], typeof(T4));
			var v5 = (T5)Convert.ChangeType(inputs[4], typeof(T5));
			var v6 = (T6)Convert.ChangeType(inputs[5], typeof(T6));
			var v7 = (T7)Convert.ChangeType(inputs[6], typeof(T7));
			return (v1, v2, v3, v4, v5, v6, v7);
		}

		public T1[] ReadValueArray<T1>(int N)
		{
			var v1 = new T1[N];
			for (int i = 0; i < N; i++)
			{
				v1[i] = ReadValue<T1>();
			}
			return v1;
		}

		public (T1[], T2[]) ReadValueArray<T1, T2>(int N)
		{
			var (v1, v2) = (new T1[N], new T2[N]);
			for (int i = 0; i < N; i++)
			{
				var (t1, t2) = ReadValue<T1, T2>();
				v1[i] = t1;
				v2[i] = t2;
			}
			return (v1, v2);
		}

		public (T1[], T2[], T3[]) ReadValueArray<T1, T2, T3>(int N)
		{
			var (v1, v2, v3) = (new T1[N], new T2[N], new T3[N]);
			for (int i = 0; i < N; i++)
			{
				var (t1, t2, t3) = ReadValue<T1, T2, T3>();
				v1[i] = t1;
				v2[i] = t2;
				v3[i] = t3;
			}
			return (v1, v2, v3);
		}

		public (T1[], T2[], T3[], T4[]) ReadValueArray<T1, T2, T3, T4>(int N)
		{
			var (v1, v2, v3, v4) = (new T1[N], new T2[N], new T3[N], new T4[N]);
			for (int i = 0; i < N; i++)
			{
				var (t1, t2, t3, t4) = ReadValue<T1, T2, T3, T4>();
				v1[i] = t1;
				v2[i] = t2;
				v3[i] = t3;
				v4[i] = t4;
			}
			return (v1, v2, v3, v4);
		}

		public (T1[], T2[], T3[], T4[], T5[]) ReadValueArray<T1, T2, T3, T4, T5>(int N)
		{
			var (v1, v2, v3, v4, v5) = (new T1[N], new T2[N], new T3[N], new T4[N], new T5[N]);
			for (int i = 0; i < N; i++)
			{
				var (t1, t2, t3, t4, t5) = ReadValue<T1, T2, T3, T4, T5>();
				v1[i] = t1;
				v2[i] = t2;
				v3[i] = t3;
				v4[i] = t4;
				v5[i] = t5;
			}
			return (v1, v2, v3, v4, v5);
		}

		public (T1[], T2[], T3[], T4[], T5[], T6[]) ReadValueArray<T1, T2, T3, T4, T5, T6>(int N)
		{
			var (v1, v2, v3, v4, v5, v6) = (new T1[N], new T2[N], new T3[N], new T4[N], new T5[N], new T6[N]);
			for (int i = 0; i < N; i++)
			{
				var (t1, t2, t3, t4, t5, t6) = ReadValue<T1, T2, T3, T4, T5, T6>();
				v1[i] = t1;
				v2[i] = t2;
				v3[i] = t3;
				v4[i] = t4;
				v5[i] = t5;
				v6[i] = t6;
			}
			return (v1, v2, v3, v4, v5, v6);
		}

		public (T1[], T2[], T3[], T4[], T5[], T6[], T7[]) ReadValueArray<T1, T2, T3, T4, T5, T6, T7>(int N)
		{
			var (v1, v2, v3, v4, v5, v6, v7) = (new T1[N], new T2[N], new T3[N], new T4[N], new T5[N], new T6[N], new T7[N]);
			for (int i = 0; i < N; i++)
			{
				var (t1, t2, t3, t4, t5, t6, t7) = ReadValue<T1, T2, T3, T4, T5, T6, T7>();
				v1[i] = t1;
				v2[i] = t2;
				v3[i] = t3;
				v4[i] = t4;
				v5[i] = t5;
				v6[i] = t6;
				v7[i] = t7;
			}
			return (v1, v2, v3, v4, v5, v6, v7);
		}
	}
}
0