結果

問題 No.686 Uncertain LIS
ユーザー square1001square1001
提出日時 2018-01-14 17:59:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 499 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 66,560 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-06 11:41:14
合計ジャッジ時間 13,504 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,667 ms
5,376 KB
testcase_12 AC 86 ms
5,376 KB
testcase_13 AC 908 ms
5,376 KB
testcase_14 AC 206 ms
5,376 KB
testcase_15 AC 195 ms
5,376 KB
testcase_16 AC 224 ms
5,376 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 239 ms
5,376 KB
testcase_21 AC 238 ms
5,376 KB
testcase_22 AC 18 ms
5,376 KB
testcase_23 AC 18 ms
5,376 KB
testcase_24 AC 60 ms
5,376 KB
testcase_25 AC 61 ms
5,376 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;
int n, l, r, dp[100009];
int main() {
	cin.tie(0);
	ios_base::sync_with_stdio(false);
	cin >> n;
	for (int i = 0; i <= 100000; i++) dp[i] = -i;
	for (int i = 0; i < n; i++) {
		cin >> l >> r;
		for (int j = r; j >= l; j--) {
			dp[j] = max(dp[j], dp[j - 1]);
		}
		int val = dp[r] + r;
		for (int j = r + 1; j <= 100000; j++) {
			if (dp[j] + j >= val) break;
			dp[j] = val - j;
		}
	}
	cout << dp[100000] + 100000 << endl;
	return 0;
}
0