結果

問題 No.1703 Much Matching
ユーザー kotatsugamekotatsugame
提出日時 2021-10-08 22:08:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 66,944 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-07-23 04:29:38
合計ジャッジ時間 4,378 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 6 ms
6,944 KB
testcase_04 AC 5 ms
6,944 KB
testcase_05 AC 7 ms
6,944 KB
testcase_06 AC 114 ms
6,944 KB
testcase_07 AC 11 ms
8,136 KB
testcase_08 AC 128 ms
7,168 KB
testcase_09 AC 144 ms
8,148 KB
testcase_10 AC 22 ms
6,940 KB
testcase_11 AC 35 ms
6,948 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 59 ms
7,892 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 31 ms
7,424 KB
testcase_16 AC 76 ms
6,944 KB
testcase_17 AC 90 ms
7,552 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 185 ms
8,008 KB
testcase_20 AC 23 ms
6,944 KB
testcase_21 AC 223 ms
8,064 KB
testcase_22 AC 91 ms
6,944 KB
testcase_23 AC 69 ms
7,936 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 12 ms
6,940 KB
testcase_26 AC 47 ms
6,944 KB
testcase_27 AC 96 ms
8,268 KB
testcase_28 AC 185 ms
8,064 KB
testcase_29 AC 39 ms
6,940 KB
testcase_30 AC 53 ms
6,944 KB
testcase_31 AC 10 ms
7,168 KB
testcase_32 AC 101 ms
7,496 KB
testcase_33 AC 69 ms
7,040 KB
testcase_34 AC 8 ms
6,944 KB
testcase_35 AC 21 ms
8,008 KB
testcase_36 AC 435 ms
8,192 KB
testcase_37 AC 9 ms
8,320 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int N,M,Q;
bool G[1000][1000];
int dp[1000][1000];
main()
{
	cin>>N>>M>>Q;
	for(int i=0;i<Q;i++)
	{
		int a,b;cin>>a>>b;
		a--,b--;
		G[a][b]=true;
	}
	int ans=0;
	for(int i=0;i<N;i++)for(int j=0;j<M;j++)
	{
		ans=max(ans,dp[i][j]+G[i][j]);
		if(i+1<N)dp[i+1][j]=max(dp[i+1][j],dp[i][j]);
		if(j+1<M)dp[i][j+1]=max(dp[i][j+1],dp[i][j]);
		if(G[i][j])
		{
			if(i+1<N&&j+1<M)dp[i+1][j+1]=max(dp[i+1][j+1],dp[i][j]+1);
		}
	}
	cout<<ans<<endl;
}
0