結果

問題 No.200 カードファイト!
ユーザー 沙耶花
提出日時 2021-11-04 17:44:44
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,096 bytes
コンパイル時間 5,253 ms
コンパイル使用メモリ 253,148 KB
最終ジャッジ日時 2025-01-25 11:27:18
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

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