結果

問題 No.1370 置換門松列
ユーザー kakel-sankakel-san
提出日時 2024-08-03 20:56:58
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 2,122 bytes
コンパイル時間 9,092 ms
コンパイル使用メモリ 171,960 KB
実行使用メモリ 197,624 KB
最終ジャッジ日時 2024-08-03 20:57:15
合計ジャッジ時間 13,766 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
30,720 KB
testcase_01 AC 58 ms
30,080 KB
testcase_02 AC 58 ms
30,336 KB
testcase_03 AC 63 ms
31,104 KB
testcase_04 AC 58 ms
30,336 KB
testcase_05 AC 64 ms
31,104 KB
testcase_06 AC 58 ms
30,080 KB
testcase_07 AC 64 ms
30,976 KB
testcase_08 AC 62 ms
30,848 KB
testcase_09 AC 58 ms
30,056 KB
testcase_10 AC 61 ms
31,104 KB
testcase_11 AC 59 ms
30,208 KB
testcase_12 AC 57 ms
30,080 KB
testcase_13 AC 60 ms
30,208 KB
testcase_14 AC 59 ms
29,952 KB
testcase_15 AC 62 ms
31,104 KB
testcase_16 AC 61 ms
30,208 KB
testcase_17 AC 60 ms
30,336 KB
testcase_18 AC 58 ms
29,952 KB
testcase_19 AC 58 ms
30,080 KB
testcase_20 AC 58 ms
30,336 KB
testcase_21 AC 112 ms
49,920 KB
testcase_22 AC 89 ms
46,952 KB
testcase_23 AC 106 ms
49,792 KB
testcase_24 AC 79 ms
38,272 KB
testcase_25 AC 116 ms
50,176 KB
testcase_26 AC 119 ms
50,048 KB
testcase_27 AC 87 ms
45,696 KB
testcase_28 AC 88 ms
45,428 KB
testcase_29 AC 81 ms
197,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (104 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 (n, m) = (c[0], c[1]);
        var a = NList;
        var ans = Kado(n, m, a);
        if (ans[0] == -1)
        {
            WriteLine("No");
        }
        else
        {
            WriteLine("Yes");
            WriteLine(string.Join(" ", ans));
        }
    }
    static int[] Kado(int n, int m, int[] a)
    {
        for (var i = 0; i < n; ++i) for (var j = 1; j < 3; ++j)
        {
            if (i + j < n && a[i] == a[i + j]) return new int[] { -1 };
        }
        var tree = new List<int>[m];
        for (var i = 0; i < m; ++i) tree[i] = new List<int>();
        var refs = new int[m];
        for (var i = 0; i + 1 < n; ++i)
        {
            if (i % 2 == 0)
            {
                tree[a[i] - 1].Add(a[i + 1] - 1);
                ++refs[a[i + 1] - 1];
            }
            else
            {
                tree[a[i + 1] - 1].Add(a[i] - 1);
                ++refs[a[i] - 1];
            }
        }
        var q = new Queue<int>();
        for (var i = 0; i < m; ++i) if (refs[i] == 0) q.Enqueue(i);
        var num = 1;
        var ans = new int[m];
        while (q.Count > 0)
        {
            var cur = q.Dequeue();
            ans[cur] = num;
            ++num;
            foreach (var next in tree[cur])
            {
                --refs[next];
                if (refs[next] == 0)
                {
                    q.Enqueue(next);
                }
            }
        }
        if (ans.Any(ai => ai == 0)) return new int[] { -1 };
        return ans;
    }
}
0