結果

問題 No.110 しましまピラミッド
ユーザー nenuonnenuon
提出日時 2017-06-21 20:20:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,193 bytes
コンパイル時間 2,538 ms
コンパイル使用メモリ 85,424 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-30 04:00:10
合計ジャッジ時間 2,254 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <cmath>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
#include <stdlib.h>
#include <stdio.h>
#include <bitset>
using namespace std;

// 方針
// 大きい方から白黒か黒白

int main(){
  int nw;
  cin >> nw;
  int w[nw];
  for (int i = 0; i < nw; i++) cin >> w[i];
  sort(w, w + nw);
  reverse(w, w + nw);

  int nb;
  cin >> nb;
  int b[nb];
  for (int i = 0; i < nb; i++) cin >> b[i];
  sort(b, b + nb);
  reverse(b, b + nb);

  int ans = 1;
  // 黒白
  int wi = 0, bi = 1, h = b[0];
  while(1){
    while(h <= w[wi] && wi < nw) wi++;
    if(wi == nw) break;
    h = w[wi];
    ans++;
    wi++;
    while(h <= b[bi] && bi < nb) bi++;
    if(bi == nb) break;
    h = b[bi];
    ans++;
    bi++;
  }
  int ret = ans;

  // 白黒
  ans = 1;
  wi = 1, bi = 0, h = w[0];
  while(1){
    while(h <= b[bi] && bi < nb) bi++;
    if(bi == nb) break;
    h = b[bi];
    ans++;
    bi++;
    while(h <= w[wi] && wi < nw) wi++;
    if(wi == nw) break;
    h = w[wi];
    ans++;
    wi++;
  }
  ret = max(ans, ret);
  cout << ret << endl;
  return 0;
}
0