結果

問題 No.1647 Travel in Mitaru city 2
ユーザー kakel-sankakel-san
提出日時 2024-01-23 22:19:20
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 4,194 bytes
コンパイル時間 7,858 ms
コンパイル使用メモリ 164,740 KB
実行使用メモリ 216,936 KB
最終ジャッジ日時 2024-09-28 06:52:22
合計ジャッジ時間 31,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
31,488 KB
testcase_01 AC 65 ms
30,592 KB
testcase_02 AC 72 ms
31,872 KB
testcase_03 AC 71 ms
31,744 KB
testcase_04 AC 79 ms
32,384 KB
testcase_05 AC 71 ms
31,744 KB
testcase_06 AC 72 ms
31,732 KB
testcase_07 AC 91 ms
33,024 KB
testcase_08 AC 438 ms
69,256 KB
testcase_09 WA -
testcase_10 AC 450 ms
68,960 KB
testcase_11 WA -
testcase_12 AC 423 ms
64,384 KB
testcase_13 AC 412 ms
64,244 KB
testcase_14 AC 442 ms
68,356 KB
testcase_15 AC 510 ms
68,716 KB
testcase_16 AC 435 ms
68,856 KB
testcase_17 WA -
testcase_18 AC 450 ms
67,936 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 457 ms
69,456 KB
testcase_23 AC 451 ms
69,340 KB
testcase_24 AC 444 ms
65,888 KB
testcase_25 WA -
testcase_26 AC 448 ms
69,452 KB
testcase_27 AC 444 ms
69,472 KB
testcase_28 AC 448 ms
69,712 KB
testcase_29 AC 448 ms
69,860 KB
testcase_30 WA -
testcase_31 AC 458 ms
69,844 KB
testcase_32 AC 439 ms
66,652 KB
testcase_33 AC 441 ms
66,012 KB
testcase_34 AC 454 ms
69,732 KB
testcase_35 WA -
testcase_36 AC 453 ms
69,852 KB
testcase_37 AC 446 ms
69,596 KB
testcase_38 AC 440 ms
66,660 KB
testcase_39 AC 431 ms
64,352 KB
testcase_40 AC 444 ms
66,656 KB
testcase_41 AC 415 ms
63,076 KB
testcase_42 AC 444 ms
66,656 KB
testcase_43 AC 64 ms
30,720 KB
testcase_44 AC 70 ms
31,584 KB
testcase_45 WA -
testcase_46 AC 415 ms
62,300 KB
testcase_47 WA -
testcase_48 AC 420 ms
62,556 KB
testcase_49 WA -
testcase_50 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (h, w, n) = (c[0], c[1], c[2]);
        var map = NMap(n);
        WriteLine(Tour(h, w, n, map));
    }
    static string Tour(int h, int w, int n, int[][] _map)
    {
        var map = new List<(int id, int h, int w)>(n);
        for (var i = 0; i < n; ++i)
        {
            map.Add((i, _map[i][0] - 1, _map[i][1] - 1));
        }
        map.Sort((l, r) =>
        {
            var d = l.h.CompareTo(r.h);
            if (d != 0) return d;
            return l.w.CompareTo(r.w);
        });
        var tree = new List<int>[n];
        for (var i = 0; i < tree.Length; ++i) tree[i] = new List<int>();
        for (var i = 0; i + 1 < map.Count; ++i)
        {
            if (map[i].h == map[i + 1].h)
            {
                tree[map[i].id].Add(map[i + 1].id);
                tree[map[i + 1].id].Add(map[i].id);
            }
        }
        map.Sort((l, r) =>
        {
            var d = l.w.CompareTo(r.w);
            if (d != 0) return d;
            return l.h.CompareTo(r.h);
        });
        for (var i = 0; i + 1 < map.Count; ++i)
        {
            if (map[i].w == map[i + 1].w)
            {
                tree[map[i].id].Add(map[i + 1].id);
                tree[map[i + 1].id].Add(map[i].id);
            }
        }
        map.Sort((l, r) => l.id.CompareTo(r.id));
        var plist = Enumerable.Repeat(-1, n).ToArray();
        for (var i = 0; i < n; ++i) if (plist[i] < 0)
        {
            var q = new Queue<(int pos, int prev)>();
            foreach (var next in tree[i])
            {
                plist[next] = i;
                q.Enqueue((next, i));
            }
            while (q.Count > 0)
            {
                var cur = q.Dequeue();
                foreach (var next in tree[cur.pos])
                {
                    if (next == cur.prev) continue;
                    if (plist[next] >= 0)
                    {
                        // ループ検知
                        var ans = Ans(i, cur.pos, next, plist, map);
                        return $"{ans.Count}\n{string.Join(" ", ans.Select(ai => ai + 1))}";
                    }
                    plist[next] = cur.pos;
                    q.Enqueue((next, cur.pos));
                }
            }
        }
        return "-1";
    }
    static List<int> Ans(int start, int cur, int next, int[] plist, List<(int id, int h, int w)> map)
    {
        var pos = cur;
        var li1 = new List<int>();
        while (pos != start)
        {
            li1.Add(pos);
            pos = plist[pos];
        }
        pos = next;
        var li2 = new List<int>();
        while (pos >= 0)
        {
            li2.Add(pos);
            pos = plist[pos];
        }
        li2.Reverse();
        li1.AddRange(li2);
        var ans = new List<int>();
        var begin = -1;
        for (var i = 0; i < li1.Count; ++i)
        {
            var pi = (li1.Count - 1 + i) % li1.Count;
            var ni = (i + 1) % li1.Count;
            if (map[li1[pi]].h == map[li1[i]].h && map[li1[i]].w == map[li1[ni]].w)
            {
                ans.Add(li1[i]);
                begin = i;
                break;
            }
        }
        var tmp = (begin + 1) % li1.Count;
        while (tmp != begin)
        {
            var pi = (li1.Count - 1 + tmp) % li1.Count;
            var ni = (tmp + 1) % li1.Count;
            if ((map[li1[pi]].h == map[li1[tmp]].h) != (map[li1[tmp]].h == map[li1[ni]].h)) ans.Add(li1[tmp]);
            tmp = (tmp + 1) % li1.Count;
        }
        return ans;
    }
}
0