結果

問題 No.1340 おーじ君をさがせ
ユーザー fgwiebfaoishfgwiebfaoish
提出日時 2021-01-15 21:50:14
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 3,388 bytes
コンパイル時間 981 ms
コンパイル使用メモリ 109,568 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-05-05 02:39:03
合計ジャッジ時間 6,991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,944 KB
testcase_01 AC 27 ms
18,816 KB
testcase_02 AC 27 ms
18,688 KB
testcase_03 AC 28 ms
18,816 KB
testcase_04 AC 28 ms
18,688 KB
testcase_05 AC 27 ms
19,072 KB
testcase_06 AC 28 ms
18,944 KB
testcase_07 AC 28 ms
19,200 KB
testcase_08 WA -
testcase_09 AC 27 ms
19,072 KB
testcase_10 RE -
testcase_11 WA -
testcase_12 AC 42 ms
19,456 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 38 ms
19,712 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 28 ms
19,072 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 155 ms
23,044 KB
testcase_40 AC 162 ms
23,036 KB
testcase_41 AC 160 ms
23,168 KB
testcase_42 AC 27 ms
18,816 KB
testcase_43 AC 28 ms
18,944 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 138 ms
21,120 KB
testcase_47 AC 148 ms
21,632 KB
testcase_48 AC 154 ms
21,888 KB
testcase_49 AC 169 ms
21,120 KB
testcase_50 AC 152 ms
20,864 KB
testcase_51 AC 158 ms
20,992 KB
testcase_52 AC 244 ms
22,528 KB
testcase_53 AC 247 ms
22,400 KB
testcase_54 AC 242 ms
22,528 KB
testcase_55 AC 212 ms
22,272 KB
testcase_56 RE -
testcase_57 AC 27 ms
18,816 KB
testcase_58 AC 27 ms
18,816 KB
testcase_59 AC 93 ms
20,096 KB
testcase_60 AC 27 ms
19,072 KB
testcase_61 AC 99 ms
20,224 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.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;
using System.Diagnostics;
//using nint=System.Int32;
static class Program{
	const int mod=(int)1e9+7;
	const long inf=long.MaxValue/3;
	static void Main(){
		Sc sc=new Sc();
		var s=sc.Ia;
		var g=new long[s[0]][];
		for(int i = 0;i<s[0];i++) {
			g[i]=Enumerable.Repeat(1L,s[0]).ToArray();
		}
		for(int i = 0;i<s[1];i++) {
			var e=sc.Ia;
			g[e[0]][e[1]]=0;
		}
		var c=Mp(g,g,s[2]-1);
		Console.WriteLine("{0}",s[0]-c[0].Sum());
	}
	static long[][] Mm(long[][] a,long[][] b){
		var q=new long[a.Length][];
		for(int j=0;j<a.Length;j++){
			q[j]=Enumerable.Repeat(inf,b[0].Length).ToArray();
			for(int i=0;i<b[0].Length;i++){
				for(int k=0;k<a.Length;k++){
					q[j][i]=Min(q[j][i],a[j][k]+b[k][i]);
				}
			}
		}
		return q;
	}
	static long[][] Mp(long[][] r,long[][] x,long e){
		while(e>0){
			if((e&1)>0){r=Mm(x,r);}
			x=Mm(x,x);
			e>>=1;
		}
		return r;
	}
}

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 int[] Ia3(int a){return Array.ConvertAll((Console.ReadLine()+" "+a.ToString()).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 long[] La3(int a){return Array.ConvertAll((Console.ReadLine()+" "+a.ToString()).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;}
	public (T,T) Tp2<T>(){var s=Console.ReadLine().Split();return (Ct<T>(s[0]),Ct<T>(s[1]));}
	public (T,T,T) Tp3<T>(){var s=Console.ReadLine().Split();return (Ct<T>(s[0]),Ct<T>(s[1]),Ct<T>(s[2]));}
	private T Ct<T>(string s){return (T)Convert.ChangeType(s,typeof(T));}
}
0