結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー kuuso1kuuso1
提出日時 2016-12-10 08:42:36
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 718 ms / 2,000 ms
コード長 2,374 bytes
コンパイル時間 1,107 ms
コンパイル使用メモリ 113,356 KB
実行使用メモリ 49,252 KB
最終ジャッジ日時 2024-05-07 09:56:32
合計ジャッジ時間 10,938 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
19,072 KB
testcase_01 AC 31 ms
19,200 KB
testcase_02 AC 30 ms
19,328 KB
testcase_03 AC 31 ms
19,200 KB
testcase_04 AC 31 ms
19,328 KB
testcase_05 AC 31 ms
19,072 KB
testcase_06 AC 31 ms
18,944 KB
testcase_07 AC 32 ms
19,200 KB
testcase_08 AC 32 ms
19,200 KB
testcase_09 AC 32 ms
19,200 KB
testcase_10 AC 32 ms
19,456 KB
testcase_11 AC 32 ms
19,072 KB
testcase_12 AC 32 ms
19,072 KB
testcase_13 AC 32 ms
18,944 KB
testcase_14 AC 36 ms
20,224 KB
testcase_15 AC 36 ms
20,736 KB
testcase_16 AC 37 ms
20,736 KB
testcase_17 AC 36 ms
20,224 KB
testcase_18 AC 37 ms
20,352 KB
testcase_19 AC 36 ms
20,608 KB
testcase_20 AC 36 ms
20,608 KB
testcase_21 AC 36 ms
20,608 KB
testcase_22 AC 36 ms
20,224 KB
testcase_23 AC 36 ms
20,480 KB
testcase_24 AC 663 ms
48,492 KB
testcase_25 AC 680 ms
49,252 KB
testcase_26 AC 674 ms
49,000 KB
testcase_27 AC 682 ms
49,136 KB
testcase_28 AC 718 ms
48,888 KB
testcase_29 AC 703 ms
49,136 KB
testcase_30 AC 708 ms
49,140 KB
testcase_31 AC 675 ms
48,752 KB
testcase_32 AC 666 ms
48,616 KB
testcase_33 AC 677 ms
48,884 KB
testcase_34 AC 232 ms
45,796 KB
testcase_35 AC 33 ms
19,328 KB
testcase_36 AC 30 ms
18,816 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;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;

class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		int[] InDeg = new int[N];
		for(int i=0;i<N;i++){
			foreach(var e in E[i]) InDeg[B[e]]++;
		}
		
		Debug.Assert( InDeg[0] == 0 );
		Debug.Assert( InDeg.Skip(1).Select(x => x !=0).Aggregate(true, (b,y) => b&y ) );
		
		int[] ENT = new int[N];	// Earliest Node Time
		for(int i=0;i<N;i++) ENT[i] = -1;
		ENT[0] = 0;
		
		Queue<int> Q = new Queue<int>(N);
		Q.Enqueue(0);
		while(Q.Count>0){
			var now = Q.Dequeue();
			foreach(var e in E[now]){
				InDeg[B[e]]--;
				if(InDeg[B[e]] == 0){
					Q.Enqueue(B[e]);
				}
				ENT[B[e]] = Math.Max(ENT[B[e]], ENT[now] + C[e]);
			}
		}
		
		Debug.Assert( InDeg.Select(x => x == 0).Aggregate(true, (b,y) => b&y ) );
		
		
		
		int[] OutDeg = new int[N];
		
		int[] LNT = new int[N]; // Latest Node Time
		for(int i=0;i<N;i++) LNT[i] = int.MaxValue;
		LNT[N-1] = ENT[N-1];
		
		Q = new Queue<int>(N);
		Q.Enqueue(N-1);
		while(Q.Count>0){
			var now = Q.Dequeue();
			foreach(var xe in XE[now]){
				OutDeg[A[xe]]++;
				if(OutDeg[A[xe]] == E[A[xe]].Count){
					Q.Enqueue(A[xe]);
				}
				LNT[A[xe]] = Math.Min(LNT[A[xe]], LNT[now] - C[xe]);
			}
		}
		
		Debug.Assert( OutDeg[N-1] == 0 );
		Debug.Assert( OutDeg.Zip(E,(n,p) => n == p.Count).Aggregate(true, (b,y) => b&y ) );
		Debug.Assert( ENT.Zip(LNT,(e,l) => e > l).Count( b => b ) == 0);
		
		//Console.WriteLine(String.Join(" ",ENT));
		//Console.WriteLine(String.Join(" ",LNT));
		
		int marginPersonCount = ENT.Zip(LNT,(e,l) => l > e).Count( b => b );
		Console.WriteLine("{0} {1}/{2}",ENT[N-1],marginPersonCount,N);
		
	}
	
	int N,M;
	List<int>[] E;
	List<int>[] XE;
	int[] A,B,C;
	
	
	public Sol(){
		// read input
		int[] d;
		d = Array.ConvertAll(Console.ReadLine().Split(' '), int.Parse);
		N = d[0]; M = d[1];
		
		E = new List<int>[N];
		for(int i=0;i<N;i++) E[i] = new List<int>();
		XE = new List<int>[N];
		for(int i=0;i<N;i++) XE[i] = new List<int>();
		
		A = new int[M];
		B = new int[M];
		C = new int[M];
		
		for(int i=0;i<M;i++){
			d = Array.ConvertAll(Console.ReadLine().Split(' '), int.Parse);
			A[i] = d[0];
			B[i] = d[1];
			C[i] = d[2];
			E[d[0]].Add(i);
			XE[d[1]].Add(i);
		}
	}
	
	
}
0