結果

問題 No.1703 Much Matching
ユーザー Drice27149Drice27149
提出日時 2021-10-08 22:45:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 41,796 KB
実行使用メモリ 11,004 KB
最終ジャッジ日時 2024-07-23 05:51:14
合計ジャッジ時間 3,053 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 4 ms
7,476 KB
testcase_04 AC 3 ms
9,364 KB
testcase_05 AC 5 ms
8,284 KB
testcase_06 AC 50 ms
8,816 KB
testcase_07 AC 7 ms
10,148 KB
testcase_08 AC 62 ms
10,040 KB
testcase_09 AC 72 ms
10,304 KB
testcase_10 AC 11 ms
7,908 KB
testcase_11 AC 16 ms
9,760 KB
testcase_12 AC 5 ms
6,940 KB
testcase_13 AC 28 ms
10,428 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 18 ms
10,192 KB
testcase_16 AC 34 ms
9,336 KB
testcase_17 AC 40 ms
10,228 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 84 ms
9,856 KB
testcase_20 AC 11 ms
6,940 KB
testcase_21 AC 103 ms
10,692 KB
testcase_22 AC 45 ms
9,800 KB
testcase_23 AC 32 ms
10,584 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 7 ms
8,452 KB
testcase_26 AC 23 ms
10,072 KB
testcase_27 AC 42 ms
10,784 KB
testcase_28 AC 93 ms
10,852 KB
testcase_29 AC 17 ms
9,748 KB
testcase_30 AC 27 ms
10,232 KB
testcase_31 AC 6 ms
10,024 KB
testcase_32 AC 48 ms
9,904 KB
testcase_33 AC 36 ms
9,884 KB
testcase_34 AC 5 ms
9,500 KB
testcase_35 AC 11 ms
9,588 KB
testcase_36 AC 217 ms
10,984 KB
testcase_37 AC 6 ms
11,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <algorithm>
int f[1005][1005];
int edge[1005][1005];

int main(){
	int n,m,q;
	scanf("%d%d%d",&n,&m,&q);
	for(int i = 0; i < q; i++){
		int u,v;
		scanf("%d%d",&u,&v);
		edge[u][v] = 1;
	}
	f[0][0] = 0;
	for(int i = 1; i <= n; i++){
		for(int j = 0; j <= m; j++){
			f[i][j] = f[i-1][j];
			if(j){
				f[i][j] = std::max(f[i][j], f[i][j-1]);
				if(edge[i][j]){
					f[i][j] = std::max(f[i][j], f[i-1][j-1]+1);
				}
			}
			//printf("f[%d][%d] = %d\n",i,j,f[i][j]);
		}
	}
	printf("%d\n",f[n][m]);
	return 0;
}
0