結果

問題 No.686 Uncertain LIS
ユーザー square1001square1001
提出日時 2018-01-14 18:05:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 478 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 66,176 KB
実行使用メモリ 12,192 KB
最終ジャッジ日時 2024-06-06 11:41:36
合計ジャッジ時間 12,130 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,192 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 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 AC 813 ms
5,376 KB
testcase_10 AC 777 ms
5,376 KB
testcase_11 AC 556 ms
5,376 KB
testcase_12 AC 31 ms
5,376 KB
testcase_13 AC 302 ms
5,376 KB
testcase_14 AC 181 ms
5,376 KB
testcase_15 AC 185 ms
5,376 KB
testcase_16 AC 184 ms
6,944 KB
testcase_17 AC 904 ms
6,940 KB
testcase_18 AC 880 ms
6,940 KB
testcase_19 AC 903 ms
6,940 KB
testcase_20 AC 192 ms
6,940 KB
testcase_21 AC 193 ms
6,944 KB
testcase_22 AC 17 ms
6,940 KB
testcase_23 AC 17 ms
6,940 KB
testcase_24 AC 55 ms
6,940 KB
testcase_25 AC 57 ms
6,944 KB
testcase_26 AC 786 ms
6,944 KB
testcase_27 AC 63 ms
6,944 KB
testcase_28 AC 61 ms
6,944 KB
testcase_29 AC 60 ms
6,948 KB
testcase_30 AC 60 ms
6,940 KB
testcase_31 AC 2 ms
6,940 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