結果

問題 No.92 逃走経路
ユーザー femtofemto
提出日時 2015-04-03 19:09:32
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 307 ms / 5,000 ms
コード長 4,739 bytes
コンパイル時間 2,545 ms
コンパイル使用メモリ 111,144 KB
実行使用メモリ 29,308 KB
最終ジャッジ日時 2023-09-17 04:01:57
合計ジャッジ時間 6,299 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
27,104 KB
testcase_01 AC 73 ms
22,832 KB
testcase_02 AC 75 ms
22,868 KB
testcase_03 AC 76 ms
24,832 KB
testcase_04 AC 75 ms
22,876 KB
testcase_05 AC 166 ms
20,968 KB
testcase_06 AC 107 ms
25,068 KB
testcase_07 AC 105 ms
22,984 KB
testcase_08 AC 85 ms
25,112 KB
testcase_09 AC 129 ms
29,108 KB
testcase_10 AC 307 ms
29,188 KB
testcase_11 AC 277 ms
29,264 KB
testcase_12 AC 222 ms
29,176 KB
testcase_13 AC 109 ms
27,176 KB
testcase_14 AC 115 ms
27,180 KB
testcase_15 AC 126 ms
25,180 KB
testcase_16 AC 116 ms
27,244 KB
testcase_17 AC 121 ms
29,308 KB
testcase_18 AC 114 ms
25,108 KB
testcase_19 AC 106 ms
29,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.Diagnostics;
using System.Collections.Generic;
using System.Linq;
using Enu = System.Linq.Enumerable;

class Solution {
    int N, M, K;
    List<edge>[] G;
    int[] d;
    void calc() {
        rio(out N, out M, out K);
        G = new List<edge>[N + 1];
        for (int i = 0; i <= N; i++) G[i] = new List<edge>();

        for (int loop = 0; loop < M; loop++) {
            var r = ria(3);
            G[r[0]].Add(new edge(r[0], r[1], r[2]));
            G[r[1]].Add(new edge(r[1], r[0], r[2]));
        }
        d = ria(K);

        HashSet<int> nowpos = new HashSet<int>();
        for (int i = 1; i <= N; i++) nowpos.Add(i);

        foreach (var cost in d) {
            HashSet<int> nextpos = new HashSet<int>();
            foreach (var p in nowpos) {
                foreach (var np in G[p].Where(e => e.cost == cost).Select(e => e.to).Distinct()) {
                    if (!nextpos.Contains(np)) nextpos.Add(np);
                }
            }
            nowpos = nextpos;
        }

        Console.WriteLine(nowpos.Count);
        Console.WriteLine(String.Join(" ", nowpos.OrderBy(e => e)));
    }
    [DebuggerDisplay("from : {from}, to : {to}, cost : {cost}")]
    private class edge {
        public int from, to;
        public int cost;
        public edge(int from, int to, int cost) {
            this.from = from; this.to = to; this.cost = cost;
        }
    }
    static void Main(string[] args) {
        new Solution().calc();
    }

    #region
    static int ri() { return int.Parse(Console.ReadLine()); }
    static int[] ria(int n) {
        if (n <= 0) { Console.ReadLine(); return new int[0]; }
        else return Console.ReadLine().Trim().Split(' ').Select(int.Parse).ToArray();
    }
    static void rio(out int p1) { p1 = ri(); }
    static void rio(out int p1, out int p2) { var r = ria(2); p1 = r[0]; p2 = r[1]; }
    static void rio(out int p1, out int p2, out int p3) { var r = ria(3); p1 = r[0]; p2 = r[1]; p3 = r[2]; }
    static void rio(out int p1, out int p2, out int p3, out int p4) { var r = ria(4); p1 = r[0]; p2 = r[1]; p3 = r[2]; p4 = r[3]; }
    static void rio(out int p1, out int p2, out int p3, out int p4, out int p5) { var r = ria(5); p1 = r[0]; p2 = r[1]; p3 = r[2]; p4 = r[3]; p5 = r[4]; }
    static long rl() { return long.Parse(Console.ReadLine()); }
    static long[] rla(int n) {
        if (n <= 0) { Console.ReadLine(); return new long[0]; }
        else return Console.ReadLine().Trim().Split(' ').Select(long.Parse).ToArray();
    }
    static void rlo(out long p1) { p1 = rl(); }
    static void rlo(out long p1, out long p2) { var r = rla(2); p1 = r[0]; p2 = r[1]; }
    static void rlo(out long p1, out long p2, out long p3) { var r = rla(3); p1 = r[0]; p2 = r[1]; p3 = r[2]; }
    static void rlo(out long p1, out long p2, out long p3, out long p4) { var r = rla(4); p1 = r[0]; p2 = r[1]; p3 = r[2]; p4 = r[3]; }
    static void rlo(out long p1, out long p2, out long p3, out long p4, out long p5) { var r = rla(5); p1 = r[0]; p2 = r[1]; p3 = r[2]; p4 = r[3]; p5 = r[4]; }
    static double rd() { return double.Parse(Console.ReadLine()); }
    static double[] rda(int n) {
        if (n <= 0) { Console.ReadLine(); return new double[0]; }
        else return Console.ReadLine().Trim().Split(' ').Select(double.Parse).ToArray();
    }
    static void rdo(out double p1) { p1 = rd(); }
    static void rdo(out double p1, out double p2) { var r = rda(2); p1 = r[0]; p2 = r[1]; }
    static void rdo(out double p1, out double p2, out double p3) { var r = rda(3); p1 = r[0]; p2 = r[1]; p3 = r[2]; }
    static void rdo(out double p1, out double p2, out double p3, out double p4) { var r = rda(4); p1 = r[0]; p2 = r[1]; p3 = r[2]; p4 = r[3]; }
    static void rdo(out double p1, out double p2, out double p3, out double p4, out double p5) { var r = rda(5); p1 = r[0]; p2 = r[1]; p3 = r[2]; p4 = r[3]; p5 = r[4]; }
    static void swap<T>(ref T x, ref T y) { T temp = x; x = y; y = temp; }
    static void wa1<T>(T[] a) { Debug.WriteLine(string.Join(" ", a)); }
    static void wa2<T>(T[][] a) {
        foreach (var row in a) {
            Debug.WriteLine(String.Join(" ", row));
        }
    }
    [DebuggerDisplay("{x} , {y}")]
    class point {
        public int x, y;
        public point(int x, int y) {
            this.x = x; this.y = y;
        }
    }
    #endregion
}

static class Extention {
    public static T[][] ToJagArray<T>(this T[,] a) {
        int n = a.GetLength(0), m = a.GetLength(1);
        var ret = new T[n][];
        for (int i = 0; i < n; i++) {
            ret[i] = new T[m];
            for (int j = 0; j < m; j++) {
                ret[i][j] = a[i, j];
            }
        }
        return ret;
    }
}

0