結果

問題 No.110 しましまピラミッド
ユーザー aaaaaaiuaaaaaaiu
提出日時 2019-08-06 00:48:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 650 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 206,128 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-25 17:36:48
合計ジャッジ時間 3,533 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    vector<pair<int,int>> a;
    int n;
    cin>>n;
    for (int i=0;i<n;i++) {
        int w;
        cin>>w;
        a.push_back({w,0});
    }
    int m;
    cin>>m;
    for (int i=0;i<m;i++) {
        int b;
        cin>>b;
        a.push_back({b,1});
    }
    sort(a.begin(),a.end());
    n=a.size();
    int c=1-a[n-1].second;
    int prev=a[n-1].first;
    int h=1;
    for (int i=n-2;i>=0;i--) {
        if (a[i].second==c && a[i].first<prev) {
            c=1-c;
            prev=a[i].first;
            h++;
        }
    }
    cout<<h<<endl;
    return 0;
}
0