結果

問題 No.686 Uncertain LIS
ユーザー square1001square1001
提出日時 2018-01-14 17:59:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 499 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 67,340 KB
実行使用メモリ 8,304 KB
最終ジャッジ日時 2023-08-25 17:26:55
合計ジャッジ時間 16,318 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 4 ms
4,376 KB
testcase_04 AC 3 ms
4,376 KB
testcase_05 AC 4 ms
4,376 KB
testcase_06 AC 4 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 7 ms
4,376 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,912 ms
4,376 KB
testcase_12 AC 98 ms
4,376 KB
testcase_13 AC 1,041 ms
4,380 KB
testcase_14 AC 242 ms
4,376 KB
testcase_15 AC 230 ms
4,380 KB
testcase_16 AC 261 ms
4,376 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
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