結果
問題 | No.92 逃走経路 |
ユーザー | EmKjp |
提出日時 | 2015-05-01 08:30:32 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 54 ms / 5,000 ms |
コード長 | 3,751 bytes |
コンパイル時間 | 1,037 ms |
コンパイル使用メモリ | 111,232 KB |
実行使用メモリ | 20,328 KB |
最終ジャッジ日時 | 2024-07-05 17:18:01 |
合計ジャッジ時間 | 2,393 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
20,080 KB |
testcase_01 | AC | 30 ms
19,456 KB |
testcase_02 | AC | 29 ms
19,328 KB |
testcase_03 | AC | 29 ms
19,456 KB |
testcase_04 | AC | 29 ms
19,328 KB |
testcase_05 | AC | 48 ms
20,096 KB |
testcase_06 | AC | 44 ms
20,096 KB |
testcase_07 | AC | 44 ms
20,096 KB |
testcase_08 | AC | 33 ms
19,968 KB |
testcase_09 | AC | 37 ms
19,840 KB |
testcase_10 | AC | 52 ms
20,224 KB |
testcase_11 | AC | 49 ms
20,096 KB |
testcase_12 | AC | 54 ms
19,840 KB |
testcase_13 | AC | 35 ms
19,832 KB |
testcase_14 | AC | 37 ms
19,924 KB |
testcase_15 | AC | 41 ms
20,096 KB |
testcase_16 | AC | 40 ms
20,172 KB |
testcase_17 | AC | 43 ms
20,328 KB |
testcase_18 | AC | 42 ms
20,096 KB |
testcase_19 | AC | 41 ms
19,968 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.IO; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; partial class Solver { struct Edge { public int To { get; set; } public int Cost { get; set; } } public void Run() { int N = ni(), M = ni(), K = ni(); var adj = Enumerable.Range(0, N).Select(_ => new List<Edge>()).ToArray(); for (int i = 0; i < M; i++) { var a = ni(); var b = ni(); var c = ni(); a--; b--; adj[a].Add(new Edge { To = b, Cost = c }); adj[b].Add(new Edge { To = a, Cost = c }); } var d = ni(K); var dp = new bool[K + 1, N]; for (int i = 0; i < N; i++) { dp[0, i] = true; } for (int i = 0; i < K; i++) { for (int j = 0; j < N; j++) { if (!dp[i, j]) continue; foreach (var edge in adj[j]) { if (edge.Cost == d[i]) { dp[i + 1, edge.To] = true; } } } } var ans = Enumerable.Range(0, N).Where(i => dp[K, i]).Select(i => i + 1).ToArray(); cout.WriteLine(ans.Length); cout.WriteLine(String.Join(" ", ans)); } } // PREWRITEN CODE BEGINS FROM HERE partial class Solver : Scanner { public static void Main(string[] args) { new Solver(Console.In, Console.Out).Run(); } TextReader cin; TextWriter cout; public Solver(TextReader reader, TextWriter writer) : base(reader) { this.cin = reader; this.cout = writer; } public Solver(string input, TextWriter writer) : this(new StringReader(input), writer) { } public int ni() { return NextInt(); } public int[] ni(int n) { return NextIntArray(n); } public long nl() { return NextLong(); } public long[] nl(int n) { return NextLongArray(n); } public string ns() { return Next(); } } public class Scanner { private TextReader Reader; private Queue<String> TokenQueue = new Queue<string>(); private CultureInfo ci = CultureInfo.InvariantCulture; public Scanner() : this(Console.In) { } public Scanner(TextReader reader) { this.Reader = reader; } public int NextInt() { return Int32.Parse(Next(), ci); } public long NextLong() { return Int64.Parse(Next(), ci); } public double NextDouble() { return double.Parse(Next(), ci); } public string[] NextArray(int size) { var array = new string[size]; for (int i = 0; i < size; i++) array[i] = Next(); return array; } public int[] NextIntArray(int size) { var array = new int[size]; for (int i = 0; i < size; i++) array[i] = NextInt(); return array; } public long[] NextLongArray(int size) { var array = new long[size]; for (int i = 0; i < size; i++) array[i] = NextLong(); return array; } public String Next() { if (TokenQueue.Count == 0) { if (!StockTokens()) throw new InvalidOperationException(); } return TokenQueue.Dequeue(); } public bool HasNext() { if (TokenQueue.Count > 0) return true; return StockTokens(); } private bool StockTokens() { while (true) { var line = Reader.ReadLine(); if (line == null) return false; var tokens = line.Trim().Split(" ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries); if (tokens.Length == 0) continue; foreach (var token in tokens) TokenQueue.Enqueue(token); return true; } } }