結果

問題 No.1369 交換門松列・竹
ユーザー kakel-sankakel-san
提出日時 2024-07-30 21:55:44
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 2,123 bytes
コンパイル時間 7,746 ms
コンパイル使用メモリ 166,528 KB
実行使用メモリ 196,128 KB
最終ジャッジ日時 2024-07-30 21:55:59
合計ジャッジ時間 12,513 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 78 ms
39,296 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 73 ms
36,700 KB
testcase_29 AC 74 ms
36,736 KB
testcase_30 AC 79 ms
39,644 KB
testcase_31 AC 78 ms
39,780 KB
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (94 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();
        WriteLine(string.Join(" ", chlist));
        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