結果

問題 No.200 カードファイト!
ユーザー 沙耶花沙耶花
提出日時 2021-11-04 08:04:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 719 bytes
コンパイル時間 4,213 ms
コンパイル使用メモリ 268,396 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 03:49:23
合計ジャッジ時間 5,100 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 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];
	int C;
	cin>>C;
	vector<int> c(C);
	rep(i,C)cin>>c[i];
	
	mf_graph<int> G(A+C+2+2);
	int S = A+C+2,T = A+C+3;
	
	rep(i,A){
		G.add_edge(S,i,N/A);
		G.add_edge(A+C, i, 1);
	}
	rep(i,C){
		G.add_edge(A+i,T,N/C);
		G.add_edge(A+i,A+C+1,1);
	}
	G.add_edge(S,A+C,N%A);
	G.add_edge(A+C+1,T,N%C);
	rep(i,A){
		rep(j,C){
			if(a[i]>c[j])G.add_edge(i,A+j,100);
		}
	}
	
	cout<<G.flow(S,T)<<endl;
	
	return 0;
	
}
0