結果

問題 No.404 部分門松列
ユーザー pekempeypekempey
提出日時 2016-10-14 12:17:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 997 ms / 2,000 ms
コード長 2,854 bytes
コンパイル時間 1,706 ms
コンパイル使用メモリ 169,616 KB
実行使用メモリ 51,600 KB
最終ジャッジ日時 2024-06-28 17:17:16
合計ジャッジ時間 16,448 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,680 KB
testcase_01 AC 9 ms
7,680 KB
testcase_02 AC 9 ms
7,808 KB
testcase_03 AC 9 ms
7,808 KB
testcase_04 AC 8 ms
7,808 KB
testcase_05 AC 9 ms
7,936 KB
testcase_06 AC 9 ms
7,808 KB
testcase_07 AC 9 ms
7,808 KB
testcase_08 AC 10 ms
7,936 KB
testcase_09 AC 9 ms
7,808 KB
testcase_10 AC 9 ms
7,936 KB
testcase_11 AC 10 ms
7,808 KB
testcase_12 AC 9 ms
7,936 KB
testcase_13 AC 375 ms
28,356 KB
testcase_14 AC 313 ms
36,420 KB
testcase_15 AC 392 ms
27,224 KB
testcase_16 AC 640 ms
30,332 KB
testcase_17 AC 609 ms
38,076 KB
testcase_18 AC 183 ms
22,420 KB
testcase_19 AC 232 ms
19,024 KB
testcase_20 AC 432 ms
42,176 KB
testcase_21 AC 675 ms
35,716 KB
testcase_22 AC 220 ms
25,712 KB
testcase_23 AC 506 ms
45,844 KB
testcase_24 AC 961 ms
45,968 KB
testcase_25 AC 997 ms
51,600 KB
testcase_26 AC 990 ms
48,612 KB
testcase_27 AC 146 ms
21,424 KB
testcase_28 AC 368 ms
32,044 KB
testcase_29 AC 809 ms
40,584 KB
testcase_30 AC 469 ms
31,920 KB
testcase_31 AC 77 ms
14,996 KB
testcase_32 AC 646 ms
36,280 KB
testcase_33 AC 511 ms
36,564 KB
testcase_34 AC 610 ms
37,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:60:42: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   60 |         for (int i = 0; i < n; i++) scanf("%d", &a[i]);
      |                                     ~~~~~^~~~~~~~~~~~~
main.cpp:67:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   67 |                 scanf("%d %d", &ll[i], &rr[i]);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct BIT {
	vector<long long> bit;

	BIT(int n) : bit(n) {}

	void update(int k, long long v) {
		for (k++; k < bit.size(); k += k & -k) {
			bit[k] += v;
		}
	}

	long long query(int k) {
		long long res = 0;
		for (k++; k > 0; k -= k & -k) {
			res += bit[k];
		}
		return res;
	}
};

const int H = 18;
const int N = 1 << H;
int seg[H + 1][N];
int *L[N * 2], *R[N * 2];

int build(int k = 1, int d = 0, int l = 0, int r = N) {
	if (d < H) {
		L[k] = R[k] = seg[d] + l;
		R[k] += build(k * 2 + 0, d + 1, l, (l + r) / 2);
		R[k] += build(k * 2 + 1, d + 1, (l + r) / 2, r);
		merge(L[k * 2 + 0], R[k * 2 + 0], L[k * 2 + 1], R[k * 2 + 1], L[k]);
	}
	return R[k] - L[k];
}

int query(int a, int b, int x, int k = 1, int l = 0, int r = N) {
	if (r <= a || b <= l) return 0;
	if (a <= l && r <= b) return upper_bound(L[k], R[k], x) - L[k];
	int L = query(a, b, x, k * 2 + 0, l, (l + r) / 2);
	int R = query(a, b, x, k * 2 + 1, (l + r) / 2, r);
	return L + R;
}

int query2(int a, int b, int x, int k = 1, int l = 0, int r = N) {
	if (r <= a || b <= l) return 0;
	if (a <= l && r <= b) return R[k] - lower_bound(L[k], R[k], x);
	int L = query2(a, b, x, k * 2 + 0, l, (l + r) / 2);
	int R = query2(a, b, x, k * 2 + 1, (l + r) / 2, r);
	return L + R;
}

int main() {
	int n;
	cin >> n;

	vector<int> a(n);
	for (int i = 0; i < n; i++) scanf("%d", &a[i]);

	vector<int> A(a);
	int Q;
	cin >> Q;
	vector<int> ll(Q), rr(Q);
	for (int i = 0; i < Q; i++) {
		scanf("%d %d", &ll[i], &rr[i]);
		A.push_back(ll[i]);
		A.push_back(rr[i]);
	}

	sort(A.begin(), A.end());
	A.erase(unique(A.begin(), A.end()), A.end());
	for (int i = 0; i < n; i++) a[i] = lower_bound(A.begin(), A.end(), a[i]) - A.begin();
	for (int i = 0; i < Q; i++) {
		ll[i] = lower_bound(A.begin(), A.end(), ll[i]) - A.begin();
		rr[i] = lower_bound(A.begin(), A.end(), rr[i]) - A.begin();
	}
	for (int i = 0; i < n; i++) {
		seg[H][i] = a[i];
		L[i + N] = seg[H] + i;
		R[i + N] = L[i + N] + 1;
	}
	build();

	vector<long long> L(A.size() + 2), R(A.size() + 2);
	for (int i = 0; i < n; i++) R[a[i]]++;
	BIT bit(A.size() + 10);

	vector<long long> cnt(A.size() + 2);

	for (int i = 0; i < n; i++) {
		bit.update(a[i], -R[a[i]] * L[a[i]]);
		R[a[i]]--;
		bit.update(a[i], R[a[i]] * L[a[i]]);

		long long s = bit.query(a[i] - 1);
		long long S = bit.query(bit.bit.size() - 2) - bit.query(a[i]);
		cnt[a[i]] += -s + (int64_t)query(0, i, a[i] - 1) * query(i + 1, N, a[i] - 1);
		cnt[a[i]] += -S + (int64_t)query2(0, i, a[i] + 1) * query2(i + 1, N, a[i] + 1);

		bit.update(a[i], -R[a[i]] * L[a[i]]);
		L[a[i]]++;
		bit.update(a[i], R[a[i]] * L[a[i]]);
	}

	vector<long long> sum(A.size() + 2);
	for (int i = 0; i < A.size() + 1; i++) {
		sum[i + 1] = sum[i] + cnt[i];
	}

	for (int i = 0; i < Q; i++) {
		printf("%lld\n", sum[rr[i] + 1] - sum[ll[i]]);
	}
}
0