結果

問題 No.1369 交換門松列・竹
ユーザー kakel-sankakel-san
提出日時 2024-07-30 22:07:27
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 814 ms / 2,000 ms
コード長 2,014 bytes
コンパイル時間 7,187 ms
コンパイル使用メモリ 168,740 KB
実行使用メモリ 221,196 KB
最終ジャッジ日時 2024-07-30 22:07:44
合計ジャッジ時間 13,576 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,848 KB
testcase_01 AC 57 ms
30,720 KB
testcase_02 AC 56 ms
30,464 KB
testcase_03 AC 54 ms
30,584 KB
testcase_04 AC 54 ms
30,720 KB
testcase_05 AC 53 ms
30,300 KB
testcase_06 AC 54 ms
30,300 KB
testcase_07 AC 55 ms
30,848 KB
testcase_08 AC 53 ms
30,720 KB
testcase_09 AC 54 ms
30,820 KB
testcase_10 AC 69 ms
32,612 KB
testcase_11 AC 53 ms
30,848 KB
testcase_12 AC 53 ms
30,720 KB
testcase_13 AC 101 ms
48,128 KB
testcase_14 AC 129 ms
54,016 KB
testcase_15 AC 138 ms
61,952 KB
testcase_16 AC 177 ms
62,208 KB
testcase_17 AC 181 ms
61,916 KB
testcase_18 AC 180 ms
62,208 KB
testcase_19 AC 146 ms
62,044 KB
testcase_20 AC 814 ms
61,936 KB
testcase_21 AC 141 ms
62,208 KB
testcase_22 AC 722 ms
62,080 KB
testcase_23 AC 188 ms
61,916 KB
testcase_24 AC 69 ms
39,168 KB
testcase_25 AC 205 ms
55,936 KB
testcase_26 AC 206 ms
56,576 KB
testcase_27 AC 218 ms
56,320 KB
testcase_28 AC 66 ms
36,580 KB
testcase_29 AC 76 ms
36,608 KB
testcase_30 AC 76 ms
39,448 KB
testcase_31 AC 80 ms
39,416 KB
testcase_32 AC 93 ms
41,856 KB
testcase_33 AC 189 ms
221,196 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (86 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[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var t = NN;
        var ans = new bool[t];
        for (var u = 0; u < t; ++u)
        {
            var n = NN;
            var a = NList;
            ans[u] = Kado(n, a);
        }
        WriteLine(string.Join("\n", ans.Select(f => f ? "Yes" : "No")));
    }
    static bool Kado(int n, int[] a)
    {
        var nglist = new List<int>();
        for (var i = 0; i + 2 < n; ++i) if (!IsKadomatsu(a[i..(i + 3)])) nglist.Add(i);
        if (nglist.Count > 6) return false;
        var chlist = new List<int>();
        foreach (var ni in nglist) for (var i = 0; i < 3; ++i) if (ni + i < n) chlist.Add(ni + i);
        chlist = chlist.Distinct().ToList();
        for (var i = 0; i < chlist.Count; ++i) for (var j = 0; j < n; ++j)
        {
            (a[chlist[i]], a[j]) = (a[j], a[chlist[i]]);
            var flg = true;
            for (var p = Math.Max(0, chlist[i] - 2); p <= chlist[i] && p + 2 < n; ++p)
            {
                if (!IsKadomatsu(a[p..(p + 3)])) flg = false;
            }
            for (var p = Math.Max(0, j - 2); p <= j && p + 2 < n; ++p)
            {
                if (!IsKadomatsu(a[p..(p + 3)])) flg = false;
            }
            foreach (var p in chlist) if (p + 2 < n && !IsKadomatsu(a[p..(p + 3)])) flg = false;
            (a[chlist[i]], a[j]) = (a[j], a[chlist[i]]);
            if (flg) return true;
        }
        return false;
    }
    static bool IsKadomatsu(int[] a)
    {
        return a[0] != a[2] && ((a[0] > a[1] && a[1] < a[2]) || (a[0] < a[1] && a[1] > a[2]));
    }
}
0