結果

問題 No.2343 (l+r)/2
ユーザー Syed Shakil Mahmud (Shajib)Syed Shakil Mahmud (Shajib)
提出日時 2023-06-09 21:10:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,179 bytes
コンパイル時間 704 ms
コンパイル使用メモリ 70,516 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-10 12:40:26
合計ジャッジ時間 1,650 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 343 ms
6,944 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 14 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 6 ms
6,940 KB
testcase_11 AC 17 ms
6,944 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 20 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

std::string isPossible(std::vector<int>& A) {
    int n = A.size();
    int countZeros = 0;
    int countOnes = 0;

    for (int i = 0; i < n; i++) {
        if (A[i] == 0) {
            countZeros++;
        } else {
            countOnes++;
        }
    }

    // 最初の要素が0でない場合、不可能
    if (A[0] != 0) {
        return "No";
    }

    // 全ての要素が0の場合、不可能
    if (countOnes == 0) {
        return "No";
    }

    // 操作によって(0.5)になるか判定
    for (int i = 1; i < n; i++) {
        if (A[i] == 0) {
            if (countOnes < 2) {
                return "No";
            }
            countOnes--;
        } else {
            if (countZeros < 1) {
                return "No";
            }
            countZeros--;
            countOnes++;
        }
    }

    return "Yes";
}

int main() {
    int T;
    std::cin >> T;

    while (T--) {
        int N;
        std::cin >> N;

        std::vector<int> A(N);
        for (int i = 0; i < N; i++) {
            std::cin >> A[i];
        }

        std::cout << isPossible(A) << std::endl;
    }

    return 0;
}
0