結果

問題 No.416 旅行会社
ユーザー eitahoeitaho
提出日時 2016-09-13 00:16:16
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 3,859 bytes
コンパイル時間 1,022 ms
コンパイル使用メモリ 111,232 KB
実行使用メモリ 82,500 KB
最終ジャッジ日時 2024-04-28 12:39:31
合計ジャッジ時間 12,898 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 671 ms
62,280 KB
testcase_01 AC 31 ms
20,224 KB
testcase_02 AC 31 ms
20,224 KB
testcase_03 AC 32 ms
19,968 KB
testcase_04 AC 31 ms
19,968 KB
testcase_05 WA -
testcase_06 AC 31 ms
20,224 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 659 ms
62,532 KB
testcase_11 AC 674 ms
66,368 KB
testcase_12 AC 675 ms
66,360 KB
testcase_13 AC 648 ms
66,372 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 957 ms
82,500 KB
testcase_17 AC 964 ms
80,848 KB
testcase_18 WA -
testcase_19 AC 755 ms
71,060 KB
testcase_20 AC 759 ms
69,668 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 HashSet<int>[N];
        var VtoComp = new int[N];
        for (int i = 0; i < N; i++)
        {
            comp[i] = new HashSet<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;
            bool zero = comp[ca].Contains(0);
            if (!zero && comp[ca].Count < comp[cb].Count)
                Swap(ref ca, ref cb);
            zero = comp[ca].Contains(0);
            foreach (int v in comp[cb])
            {
                comp[ca].Add(v);
                VtoComp[v] = ca;
                if (zero) ans[v] = time;
            }
            //comp[cb].Clear();
        };
        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);

        ans.Skip(1).ToList().ForEach(a => Console.WriteLine(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