結果

問題 No.1865 Make Cycle
ユーザー kakel-sankakel-san
提出日時 2022-03-04 23:33:46
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 512 ms / 3,000 ms
コード長 1,896 bytes
コンパイル時間 2,426 ms
コンパイル使用メモリ 108,032 KB
実行使用メモリ 48,468 KB
最終ジャッジ日時 2024-07-18 21:58:21
合計ジャッジ時間 8,633 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
39,292 KB
testcase_01 AC 263 ms
36,348 KB
testcase_02 AC 391 ms
43,384 KB
testcase_03 AC 281 ms
42,236 KB
testcase_04 AC 375 ms
43,272 KB
testcase_05 AC 115 ms
30,072 KB
testcase_06 AC 324 ms
38,272 KB
testcase_07 AC 356 ms
43,512 KB
testcase_08 AC 415 ms
44,972 KB
testcase_09 AC 111 ms
30,712 KB
testcase_10 AC 415 ms
43,904 KB
testcase_11 AC 385 ms
43,008 KB
testcase_12 AC 344 ms
42,488 KB
testcase_13 AC 344 ms
39,028 KB
testcase_14 AC 285 ms
41,080 KB
testcase_15 AC 391 ms
41,720 KB
testcase_16 AC 402 ms
44,124 KB
testcase_17 AC 115 ms
28,916 KB
testcase_18 AC 117 ms
30,592 KB
testcase_19 AC 512 ms
48,468 KB
testcase_20 AC 32 ms
19,200 KB
testcase_21 AC 33 ms
19,328 KB
testcase_22 AC 33 ms
19,456 KB
testcase_23 AC 32 ms
19,072 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray();
    static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray();
    static void Main()
    {
        var c = NList;
        var (n, q) = (c[0], c[1]);
        var map = NMap(q);

        var tree = new List<(int id, int to)>[n];
        for (var i = 0; i < tree.Length; ++i) tree[i] = new List<(int id, int to)>();
        for (var i = 0; i < map.Length; ++i)
        {
            tree[map[i][0]].Add((i, map[i][1]));
        }
        if (!HasLoop(tree, q))
        {
            WriteLine(-1);
            return;
        }
        var ok = q;
        var ng = 0;
        while (ok - ng > 1)
        {
            var center = (ng + ok) / 2;
            if (HasLoop(tree, center)) ok = center;
            else ng = center;
        }
        WriteLine(ok);
    }
    static bool HasLoop(List<(int id, int to)>[] tree, int time)
    {
        var refcount = new int[tree.Length];
        foreach (var from in tree)
        {
            foreach (var edge in from)
            {
                if (edge.id < time) ++refcount[edge.to];
            }
        }
        var q = new Queue<int>();
        for (var i = 0; i < refcount.Length; ++i) if (refcount[i] == 0) q.Enqueue(i);
        while (q.Count > 0)
        {
            var cur = q.Dequeue();
            foreach (var edge in tree[cur])
            {
                if (edge.id < time)
                {
                    --refcount[edge.to];
                    if (refcount[edge.to] == 0) q.Enqueue(edge.to);
                }
            }
        }
        return refcount.Max() > 0;
    }
}
0