結果

問題 No.1369 交換門松列・竹
ユーザー kakel-sankakel-san
提出日時 2024-07-30 21:56:50
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 2,077 bytes
コンパイル時間 9,255 ms
コンパイル使用メモリ 166,948 KB
実行使用メモリ 194,800 KB
最終ジャッジ日時 2024-07-30 21:57:03
合計ジャッジ時間 10,505 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
30,720 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 56 ms
30,464 KB
testcase_04 AC 52 ms
30,848 KB
testcase_05 AC 53 ms
30,720 KB
testcase_06 WA -
testcase_07 AC 52 ms
30,592 KB
testcase_08 AC 54 ms
30,464 KB
testcase_09 AC 54 ms
30,464 KB
testcase_10 AC 56 ms
30,592 KB
testcase_11 AC 56 ms
30,584 KB
testcase_12 AC 54 ms
30,592 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 71 ms
39,168 KB
testcase_16 AC 72 ms
39,424 KB
testcase_17 AC 71 ms
39,040 KB
testcase_18 AC 84 ms
39,168 KB
testcase_19 AC 70 ms
39,168 KB
testcase_20 AC 72 ms
39,552 KB
testcase_21 AC 72 ms
39,296 KB
testcase_22 AC 70 ms
39,424 KB
testcase_23 AC 69 ms
39,288 KB
testcase_24 AC 70 ms
39,040 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 64 ms
36,992 KB
testcase_29 AC 66 ms
36,864 KB
testcase_30 AC 71 ms
39,552 KB
testcase_31 AC 70 ms
39,680 KB
testcase_32 WA -
testcase_33 AC 66 ms
194,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /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[][] 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 = i + 1; j < chlist.Count; ++j)
        {
            (a[chlist[i]], a[chlist[j]]) = (a[chlist[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, chlist[j] - 2); p <= chlist[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;
            if (flg) return true;
            (a[chlist[i]], a[chlist[j]]) = (a[chlist[j]], a[chlist[i]]);
        }
        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