結果

問題 No.416 旅行会社
ユーザー eitahoeitaho
提出日時 2016-09-13 00:45:38
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 579 ms / 4,000 ms
コード長 3,761 bytes
コンパイル時間 1,084 ms
コンパイル使用メモリ 111,104 KB
実行使用メモリ 73,396 KB
最終ジャッジ日時 2024-05-08 15:23:12
合計ジャッジ時間 8,190 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
49,104 KB
testcase_01 AC 32 ms
19,584 KB
testcase_02 AC 32 ms
19,456 KB
testcase_03 AC 30 ms
19,200 KB
testcase_04 AC 31 ms
19,456 KB
testcase_05 AC 32 ms
19,328 KB
testcase_06 AC 30 ms
19,072 KB
testcase_07 AC 35 ms
19,584 KB
testcase_08 AC 39 ms
20,608 KB
testcase_09 AC 60 ms
24,960 KB
testcase_10 AC 303 ms
48,852 KB
testcase_11 AC 332 ms
50,040 KB
testcase_12 AC 293 ms
53,168 KB
testcase_13 AC 282 ms
55,616 KB
testcase_14 AC 541 ms
67,896 KB
testcase_15 AC 554 ms
71,440 KB
testcase_16 AC 579 ms
73,080 KB
testcase_17 AC 562 ms
70,360 KB
testcase_18 AC 553 ms
73,396 KB
testcase_19 AC 379 ms
59,520 KB
testcase_20 AC 372 ms
58,856 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.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Collections.Generic;
using System.Diagnostics;
using Enu = System.Linq.Enumerable;

public class Program
{
    static readonly long Big = (long)1e9;

    public void Solve()
    {
        int N = Reader.Int(), M = Reader.Int(), Q = Reader.Int();
        var EdgeId = new Dictionary<long, int>();
        var E = new int[M][];
        var RemovedEdge = new int[Q][];
        var Removed = new bool[M];

        for (int i = 0; i < M; i++)
        {
            int a = Reader.Int() - 1, b = Reader.Int() - 1;
            E[i] = new[] { a, b };
            EdgeId[a * Big + b] = i;
        }
        for (int i = 0; i < Q; i++)
        {
            int a = Reader.Int() - 1, b = Reader.Int() - 1;
            RemovedEdge[i] = new[] { a, b };
            Removed[EdgeId[a * Big + b]] = true;
        }

        var ans = new int[N];
        var comp = new List<int>[N];
        var VtoComp = new int[N];
        for (int i = 0; i < N; i++)
        {
            comp[i] = new List<int>(new[] { i });
            VtoComp[i] = i;
        }

        Action<int, int, int> Unite = (a, b, time) =>
        {
            int ca = VtoComp[a], cb = VtoComp[b];
            if (ca == cb) return;
            if (ca != 0 && (cb == 0 || comp[ca].Count < comp[cb].Count))
                Swap(ref ca, ref cb);
            foreach (int v in comp[cb])
            {
                comp[ca].Add(v);
                VtoComp[v] = ca;
                if (ca == 0) ans[v] = time;
            }
        };
        for (int i = 0; i < M; i++)
            if (!Removed[i])
                Unite(E[i][0], E[i][1], Q + 1);
        for (int i = Q - 1; i >= 0; i--)
            Unite(RemovedEdge[i][0], RemovedEdge[i][1], i + 1);

        Console.WriteLine(string.Join("\n", ans.Skip(1).Select(a => a == Q + 1 ? -1 : a)));
    }

    static void Swap<T>(ref T a, ref T b) { T t = a; a = b; b = t; }
}

class Entry { static void Main() { new Program().Solve(); } }
class Reader
{
    static TextReader reader = Console.In;
    static readonly char[] separator = { ' ' };
    static readonly StringSplitOptions op = StringSplitOptions.RemoveEmptyEntries;
    static string[] A = new string[0];
    static int i;
    static void Init() { A = new string[0]; }
    public static void Set(TextReader r) { reader = r; Init(); }
    public static void Set(string file) { reader = new StreamReader(file); Init(); }
    public static bool HasNext() { return CheckNext(); }
    public static string String() { return Next(); }
    public static int Int() { return int.Parse(Next()); }
    public static long Long() { return long.Parse(Next()); }
    public static double Double() { return double.Parse(Next()); }
    public static int[] IntLine() { return Array.ConvertAll(Split(Line()), int.Parse); }
    public static int[] IntArray(int N) { return Range(N, Int); }
    public static int[][] IntTable(int H) { return Range(H, IntLine); }
    public static string[] StringArray(int N) { return Range(N, Next); }
    public static string[][] StringTable(int N) { return Range(N, () => Split(Line())); }
    public static string Line() { return reader.ReadLine().Trim(); }
    static string[] Split(string s) { return s.Split(separator, op); }
    static T[] Range<T>(int N, Func<T> f) { var r = new T[N]; for (int i = 0; i < N; r[i++] = f()) ; return r; }
    static string Next() { CheckNext(); return A[i++]; }
    static bool CheckNext()
    {
        if (i < A.Length) return true;
        string line = reader.ReadLine();
        if (line == null) return false;
        if (line == "") return CheckNext();
        A = Split(line);
        i = 0;
        return true;
    }
}
0