結果

問題 No.686 Uncertain LIS
ユーザー square1001square1001
提出日時 2018-01-14 18:05:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 478 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 66,468 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-25 17:27:26
合計ジャッジ時間 15,083 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 3 ms
4,376 KB
testcase_04 AC 3 ms
4,380 KB
testcase_05 AC 3 ms
4,380 KB
testcase_06 AC 4 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 8 ms
4,376 KB
testcase_09 AC 924 ms
4,376 KB
testcase_10 AC 885 ms
4,376 KB
testcase_11 AC 645 ms
4,380 KB
testcase_12 AC 38 ms
4,376 KB
testcase_13 AC 350 ms
4,380 KB
testcase_14 AC 221 ms
4,376 KB
testcase_15 AC 209 ms
4,376 KB
testcase_16 AC 223 ms
4,380 KB
testcase_17 AC 1,032 ms
4,376 KB
testcase_18 AC 1,033 ms
4,380 KB
testcase_19 AC 1,045 ms
4,380 KB
testcase_20 AC 233 ms
4,380 KB
testcase_21 AC 234 ms
4,376 KB
testcase_22 AC 16 ms
4,376 KB
testcase_23 AC 16 ms
4,376 KB
testcase_24 AC 62 ms
4,376 KB
testcase_25 AC 64 ms
4,376 KB
testcase_26 AC 781 ms
4,376 KB
testcase_27 AC 66 ms
4,380 KB
testcase_28 AC 68 ms
4,380 KB
testcase_29 AC 66 ms
4,376 KB
testcase_30 AC 67 ms
4,376 KB
testcase_31 AC 2 ms
4,380 KB
testcase_32 TLE -
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] = 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