結果

問題 No.2518 Adjacent Larger
ユーザー InTheBloomInTheBloom
提出日時 2023-10-27 22:54:02
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 1,349 bytes
コンパイル時間 3,533 ms
コンパイル使用メモリ 178,184 KB
実行使用メモリ 8,788 KB
最終ジャッジ日時 2024-09-25 14:56:42
合計ジャッジ時間 5,027 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 24 ms
6,940 KB
testcase_02 AC 24 ms
6,944 KB
testcase_03 AC 24 ms
6,940 KB
testcase_04 AC 24 ms
6,940 KB
testcase_05 AC 24 ms
6,944 KB
testcase_06 AC 8 ms
6,940 KB
testcase_07 AC 9 ms
6,944 KB
testcase_08 AC 9 ms
6,940 KB
testcase_09 AC 9 ms
6,940 KB
testcase_10 AC 9 ms
6,944 KB
testcase_11 AC 8 ms
6,940 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 8 ms
6,940 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 8 ms
6,940 KB
testcase_16 AC 28 ms
8,788 KB
testcase_17 AC 16 ms
6,940 KB
testcase_18 AC 15 ms
6,944 KB
testcase_19 AC 12 ms
6,944 KB
testcase_20 AC 19 ms
6,944 KB
testcase_21 AC 21 ms
6,972 KB
testcase_22 AC 20 ms
7,060 KB
testcase_23 AC 29 ms
7,108 KB
testcase_24 AC 23 ms
6,940 KB
testcase_25 AC 25 ms
7,004 KB
testcase_26 AC 24 ms
7,024 KB
testcase_27 AC 19 ms
7,064 KB
testcase_28 AC 25 ms
6,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int T = readln.chomp.to!int;

    foreach (_; 0..T) {
        int N = readln.split[0].to!int;
        int[] A = readln.split.to!(int[]);

        auto ans = solve(N, A);
        writeln(ans);
    }
}

auto solve (int N, int[] A) {
    /**
     * 必要条件
     * - 0と2が少なくとも1つ
     * - 0と2は同じものが連続することがない
     * - 0と2は同じ数だけ存在
     * かなー未証明だけど提出チャレンジする
     * 
     * WAした。まだなんか抜けてるみたい
     */

    int zero = 0, two = 0;
    foreach (a; A) {
        if (a == 0) zero++;
        if (a == 2) two++;
    }

    if (zero != two || zero == 0 || two == 0) return "No";

    foreach (i; 0..A.length) {
        if (A[i] == 0 || A[i] == 2) {
            if (A[i] == A[(i+1)%A.length]) return "No";
        }
    }

    bool isNextZero = false;
    bool first = true;
    foreach (a; chain(A, A)) {
        if (first && a == 0) { isNextZero = false; first = false; continue; }
        if (first && a == 2) { isNextZero = true; first = false; continue; }

        if (first) continue;

        if (a == 0 && isNextZero) { isNextZero = false; continue; }
        if (a == 2 && !isNextZero) { isNextZero = true; continue; }

        if (a == 0 || a == 2) return "No";
    }

    return "Yes";
}
0