結果

問題 No.2422 regisys?
ユーザー m_99m_99
提出日時 2023-08-12 13:53:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,119 bytes
コンパイル時間 4,652 ms
コンパイル使用メモリ 238,012 KB
実行使用メモリ 57,116 KB
最終ジャッジ日時 2024-11-19 16:33:13
合計ジャッジ時間 26,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 3 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 3 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
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 513 ms
18,952 KB
testcase_32 AC 295 ms
30,772 KB
testcase_33 AC 226 ms
16,988 KB
testcase_34 AC 114 ms
15,512 KB
testcase_35 AC 261 ms
19,708 KB
testcase_36 AC 205 ms
23,872 KB
testcase_37 AC 335 ms
31,304 KB
testcase_38 AC 201 ms
25,552 KB
testcase_39 AC 135 ms
18,692 KB
testcase_40 AC 184 ms
12,616 KB
testcase_41 AC 140 ms
17,736 KB
testcase_42 AC 437 ms
30,936 KB
testcase_43 AC 254 ms
22,376 KB
testcase_44 AC 754 ms
34,524 KB
testcase_45 AC 513 ms
29,148 KB
testcase_46 AC 892 ms
34,228 KB
testcase_47 AC 981 ms
24,924 KB
testcase_48 AC 381 ms
32,308 KB
testcase_49 AC 1,047 ms
31,296 KB
testcase_50 AC 264 ms
28,760 KB
testcase_51 AC 679 ms
48,280 KB
testcase_52 AC 193 ms
15,588 KB
testcase_53 TLE -
testcase_54 AC 452 ms
46,248 KB
testcase_55 AC 390 ms
32,804 KB
testcase_56 AC 297 ms
35,964 KB
testcase_57 AC 1,237 ms
57,012 KB
testcase_58 AC 1,237 ms
57,116 KB
testcase_59 AC 1,239 ms
56,976 KB
testcase_60 AC 1,198 ms
56,984 KB
testcase_61 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001



int main(){
	
	int n,m;
	cin>>n>>m;
	
	vector<int> a(n),b(n);
	rep(i,n)cin>>a[i];
	rep(i,n)cin>>b[i];
	
	vector<vector<int>> t(2);
	rep(i,m){
		int x,y;
		cin>>x>>y;
		t[x].push_back(y);
	}
	rep(i,2)sort(t[i].begin(),t[i].end());
	
	mf_graph<int> G(m + n + 2);
	int S = m+n;
	int T = S+1;
	rep(i,n){
		G.add_edge(S,i,1);
		int d = distance(t[0].begin(),lower_bound(t[0].begin(),t[0].end(),a[i]));
		if(d!=t[0].size())G.add_edge(i,n+d,1);
		d = distance(t[1].begin(),lower_bound(t[1].begin(),t[1].end(),b[i]));
		if(d!=t[1].size())G.add_edge(i,n+t[0].size()+d,1);
	}
	rep(i,t[0].size()){
		G.add_edge(n+i,T,1);
		if(i!=t[0].size()-1)G.add_edge(n+i,n+i+1,Inf32);
	}
	rep(i,t[1].size()){
		G.add_edge(n+t[0].size()+i,T,1);
		if(i!=t[1].size()-1)G.add_edge(n+t[0].size()+i,n+i+t[0].size()+1,Inf32);
	}
	int ans = G.flow(S,T);
	ans = n-ans;
	cout<<ans<<endl;
	return 0;
}
0