結果

問題 No.110 しましまピラミッド
ユーザー  nemunemu nemunemu
提出日時 2023-05-03 10:05:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,218 bytes
コンパイル時間 771 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-01 12:06:04
合計ジャッジ時間 1,754 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 2 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
const int INF = 1 << 30;

int main() {
    int Nw, Nb;
    cin >> Nw;
    vector<int> W(Nw);
    for (int i = 0; i < Nw; ++i) cin >> W[i];
    cin >> Nb;
    vector<int> B(Nb);
    for (int i = 0; i < Nb; ++i) cin >> B[i];

    sort(W.begin(), W.end());
    sort(B.begin(), B.end());

    int res = 0;
    int w_idx = Nw - 1;
    int b_idx = Nb - 1;
    int cur = INF;
    bool w_flag = true;
    bool b_flag = true;
    while (true) {
        if ((w_flag && w_idx < 0) || (b_flag && b_idx < 0)) break;
        int neww = 0, newb = 0;
        if (w_idx >= 0 && w_flag && W[w_idx] < cur) {
            neww = W[w_idx];
        }
        if (b_idx >= 0 && b_flag && B[b_idx] < cur) {
            newb = B[b_idx];
        }
        if (neww > newb) {
            cur = neww;
            w_flag = false;
            b_flag = true;
            --w_idx;
            ++res;
        } else if (newb) {
            cur = newb;
            w_flag = true;
            b_flag = false;
            --b_idx;
            ++res;
        } else {
            if (w_flag) --w_idx;
            if (b_flag) --b_idx;
        }
    }
    cout << res << endl;
}
0