結果

問題 No.686 Uncertain LIS
ユーザー square1001square1001
提出日時 2018-01-14 20:44:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 1,564 bytes
コンパイル時間 968 ms
コンパイル使用メモリ 65,144 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-20 17:59:31
合計ジャッジ時間 5,395 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 172 ms
4,380 KB
testcase_10 AC 161 ms
4,376 KB
testcase_11 AC 93 ms
4,380 KB
testcase_12 AC 4 ms
4,380 KB
testcase_13 AC 41 ms
4,376 KB
testcase_14 AC 20 ms
4,380 KB
testcase_15 AC 13 ms
4,376 KB
testcase_16 AC 31 ms
4,376 KB
testcase_17 AC 200 ms
4,380 KB
testcase_18 AC 200 ms
4,380 KB
testcase_19 AC 200 ms
4,380 KB
testcase_20 AC 39 ms
4,376 KB
testcase_21 AC 39 ms
4,380 KB
testcase_22 AC 18 ms
4,376 KB
testcase_23 AC 17 ms
4,376 KB
testcase_24 AC 23 ms
4,380 KB
testcase_25 AC 24 ms
4,376 KB
testcase_26 AC 216 ms
4,376 KB
testcase_27 AC 30 ms
4,380 KB
testcase_28 AC 31 ms
4,376 KB
testcase_29 AC 30 ms
4,380 KB
testcase_30 AC 31 ms
4,380 KB
testcase_31 AC 2 ms
4,376 KB
testcase_32 AC 84 ms
4,380 KB
testcase_33 AC 217 ms
4,376 KB
testcase_34 AC 201 ms
4,376 KB
testcase_35 AC 201 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int n, l, r; unsigned long long a[1569];
int main() {
	cin.tie(0);
	ios_base::sync_with_stdio(false);
	cin >> n;
	for (int i = 0; i < n; i++) {
		cin >> l >> r;
		bool found = false;
		for (int j = r >> 6; j < 1563 && !found; j++) {
			if (a[j] == 0) continue;
			for (int k = 0; k < 64; k++) {
				if ((a[j] & (1ULL << k)) && (j << 6) + k >= r) {
					a[j] -= 1ULL << k;
					found = true;
					break;
				}
			}
		}
		if (r - l < 64) {
			for (int j = r - 1; j >= l; j--) {
				if (a[j >> 6] & (1ULL << (j & 63))) a[(j + 1) >> 6] |= 1ULL << ((j + 1) & 63), a[j >> 6] -= 1ULL << (j & 63);
			}
		}
		else {
			r++; l++;
			for (int j = (r & 63); j >= 1; j--) {
				if (a[r >> 6] & (1ULL << (j - 1))) {
					a[r >> 6] -= 1ULL << (j - 1);
					a[r >> 6] |= 1ULL << j;
				}
			}
			if (a[(r >> 6) - 1] & (1ULL << 63)) {
				a[(r >> 6) - 1] -= 1ULL << 63;
				a[r >> 6]++;
			}
			for (int j = (r >> 6) - 1; j > (l >> 6); j--) {
				a[j] <<= 1;
				if (a[j - 1] & (1ULL << 63)) {
					a[j - 1] -= 1ULL << 63;
					a[j]++;
				}
			}
			for (int j = 63; j >= (l & 63 ? (l & 63) : 1); j--) {
				if (a[l >> 6] & (1ULL << (j - 1))) {
					a[l >> 6] -= 1ULL << (j - 1);
					a[l >> 6] |= 1ULL << j;
				}
			}
			if ((l & 63) == 0 && a[(l >> 6) - 1] & (1ULL << 63)) {
				a[(l >> 6) - 1] -= 1ULL << 63;
				a[l >> 6]++;
			}
			l--;
		}
		a[l >> 6] |= 1ULL << (l & 63);
	}
	int ret = 0;
	for (int i = 0; i < 1563; i++) {
		for (int j = 0; j < 64; j++) {
			if (a[i] & (1ULL << j)) ret++;
		}
	}
	cout << ret << '\n';
	return 0;
}
0