結果

問題 No.200 カードファイト!
ユーザー 沙耶花沙耶花
提出日時 2021-11-04 17:44:44
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,096 bytes
コンパイル時間 4,014 ms
コンパイル使用メモリ 263,868 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-05 11:58:15
合計ジャッジ時間 5,089 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint1000000007;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000000000
	

int main(){	
	
	int N;
	cin>>N;
	
	int A;
	cin>>A;
	
	vector<int> a(A);
	rep(i,A){
		cin>>a[i];
		a[i] *= -1;
	}
	int C;
	cin>>C;
	vector<int> c(C);
	rep(i,C){
		cin>>c[i];
		c[i] *= -1;
	}
	int ans = 0;
	vector<int> aa,cc;
	rep(_,N){
		if(aa.size()==0){
			_--;
			aa = a;
			continue;
		}
		if(cc.size()==0){
			cc = c;
			_--;
			continue;
		}
		sort(aa.begin(),aa.end());
		sort(cc.begin(),cc.end());
		if(aa.size()<cc.size()){
			int d = distance(cc.begin(),upper_bound(cc.begin(),cc.end(),aa[0]));
			aa.erase(aa.begin());
			if(d!=cc.size()){
				ans++;
				cc.erase(cc.begin()+d);
			}
			else{
				cc.erase(cc.begin());
			}
		}
		else{
			int d = distance(aa.begin(),lower_bound(aa.begin(),aa.end(),cc.back()));
			cc.pop_back();
			if(d!=0){
				ans++;
				aa.erase(aa.begin()+d-1);
			}
			else{
				aa.pop_back();
			}
		}
	}
	cout<<ans<<endl;
	
	return 0;
	
}
0