結果

問題 No.686 Uncertain LIS
ユーザー square1001square1001
提出日時 2018-01-14 20:24:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,577 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 68,692 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-08-25 17:34:09
合計ジャッジ時間 8,875 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 18 ms
4,376 KB
testcase_23 AC 18 ms
4,380 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 333 ms
4,380 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 2 ms
4,376 KB
testcase_32 AC 201 ms
4,376 KB
testcase_33 AC 331 ms
4,376 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;
int n, l, r; unsigned long long a[3131];
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 < 3125 && !found; j++) {
			if (a[j] == 0) continue;
			for (int k = 0; k < 64; k++) {
				if ((a[j] & (1ULL << k)) && ((r >> 6) << 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); 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 < 3125; i++) {
		for (int j = 0; j < 64; j++) {
			if (a[i] & (1ULL << j)) ret++;
		}
	}
	cout << ret << '\n';
	return 0;
}
0