結果

問題 No.92 逃走経路
ユーザー nanophoto12nanophoto12
提出日時 2014-12-14 15:23:01
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 439 ms / 5,000 ms
コード長 3,052 bytes
コンパイル時間 841 ms
コンパイル使用メモリ 112,928 KB
実行使用メモリ 55,168 KB
最終ジャッジ日時 2024-06-11 21:07:33
合計ジャッジ時間 4,145 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
32,640 KB
testcase_01 AC 34 ms
19,584 KB
testcase_02 AC 36 ms
19,712 KB
testcase_03 AC 35 ms
19,840 KB
testcase_04 AC 35 ms
19,584 KB
testcase_05 AC 349 ms
39,680 KB
testcase_06 AC 43 ms
21,332 KB
testcase_07 AC 43 ms
21,472 KB
testcase_08 AC 41 ms
20,992 KB
testcase_09 AC 101 ms
38,784 KB
testcase_10 AC 407 ms
55,168 KB
testcase_11 AC 368 ms
38,400 KB
testcase_12 AC 439 ms
55,040 KB
testcase_13 AC 76 ms
30,336 KB
testcase_14 AC 93 ms
32,640 KB
testcase_15 AC 101 ms
33,152 KB
testcase_16 AC 92 ms
32,512 KB
testcase_17 AC 90 ms
32,384 KB
testcase_18 AC 64 ms
26,752 KB
testcase_19 AC 54 ms
25,984 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.Linq;
using System.Text;

namespace Yukicoder
{
    class Program
    {
        private class Edge
        {
            private readonly int _from;
            private readonly int _to;

            public Edge(int from, int to)
            {
                _from = @from;
                _to = to;
            }

            public int From
            {
                get { return _from; }
            }

            public int To
            {
                get { return _to; }
            }
        }

        static void Main(string[] args)
        {
            var line = Console.ReadLine().Split(' ').Select(long.Parse).ToArray();
            var n = line[0];
            var m = line[1];
            var k = line[2];

            Dictionary<long, List<Edge>> map = new Dictionary<long, List<Edge>>();
            for (int i = 0; i < m; i++)
            {
                var edge = Console.ReadLine().Split(' ').Select(long.Parse).ToArray();
                if (!map.ContainsKey(edge[2]))
                {
                    map.Add(edge[2], new List<Edge>());                    
                }
                map[edge[2]].Add(new Edge((int)edge[0], (int)edge[1]));
            }
            var history = Console.ReadLine().Split(' ').Select(long.Parse).ToArray();
            var list = new List<Dictionary<int, List<int>>>();
            for (int i = 0; i < history.Length; i++)
            {
                var cost = history[i];
                var candidates = new Dictionary<int, List<int>>();
                for (int j = 0; j < map[cost].Count; j++)
                {
                    if (!candidates.ContainsKey(map[cost][j].From))
                    {
                        candidates.Add(map[cost][j].From, new List<int>());
                    }
                    candidates[map[cost][j].From].Add(map[cost][j].To);
                    if (!candidates.ContainsKey(map[cost][j].To))
                    {
                        candidates.Add(map[cost][j].To, new List<int>());
                    }
                    candidates[map[cost][j].To].Add(map[cost][j].From);
                }
                list.Add(candidates);
            }
            int[] previous = list[0].SelectMany(element=>element.Value).Distinct().ToArray();
            for (int i = 1; i < list.Count; i++)
            {
                List<int> nexts = new List<int>();
                for (int j = 0; j < previous.Length; j++)
                {
                    if (list[i].ContainsKey(previous[j]))
                    {
                        nexts.AddRange(list[i][previous[j]]);                        
                    }
                }
                previous = nexts.Distinct().ToArray();
            }
            Array.Sort(previous);
            Console.WriteLine(previous.Length);
            Console.WriteLine(string.Join(" ",previous));
        }
    }
}
0