結果

問題 No.1496 不思議な数え上げ
ユーザー 00 Sakuda00 Sakuda
提出日時 2024-04-01 01:33:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 936 ms / 3,000 ms
コード長 1,405 bytes
コンパイル時間 2,132 ms
コンパイル使用メモリ 208,280 KB
実行使用メモリ 13,680 KB
最終ジャッジ日時 2024-09-30 21:34:41
合計ジャッジ時間 34,367 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 770 ms
13,600 KB
testcase_04 AC 768 ms
13,604 KB
testcase_05 AC 772 ms
13,556 KB
testcase_06 AC 777 ms
13,600 KB
testcase_07 AC 766 ms
13,548 KB
testcase_08 AC 772 ms
13,524 KB
testcase_09 AC 801 ms
13,548 KB
testcase_10 AC 809 ms
13,680 KB
testcase_11 AC 805 ms
13,636 KB
testcase_12 AC 743 ms
13,644 KB
testcase_13 AC 789 ms
13,520 KB
testcase_14 AC 936 ms
13,644 KB
testcase_15 AC 796 ms
13,536 KB
testcase_16 AC 788 ms
13,652 KB
testcase_17 AC 749 ms
13,584 KB
testcase_18 AC 752 ms
13,612 KB
testcase_19 AC 741 ms
13,568 KB
testcase_20 AC 760 ms
13,632 KB
testcase_21 AC 755 ms
13,616 KB
testcase_22 AC 759 ms
13,636 KB
testcase_23 AC 754 ms
13,604 KB
testcase_24 AC 772 ms
13,560 KB
testcase_25 AC 733 ms
13,588 KB
testcase_26 AC 718 ms
13,624 KB
testcase_27 AC 749 ms
13,652 KB
testcase_28 AC 769 ms
13,624 KB
testcase_29 AC 760 ms
13,644 KB
testcase_30 AC 756 ms
13,632 KB
testcase_31 AC 745 ms
13,564 KB
testcase_32 AC 666 ms
12,796 KB
testcase_33 AC 350 ms
8,320 KB
testcase_34 AC 324 ms
8,192 KB
testcase_35 AC 7 ms
6,820 KB
testcase_36 AC 673 ms
13,020 KB
testcase_37 AC 380 ms
8,576 KB
testcase_38 AC 344 ms
8,320 KB
testcase_39 AC 485 ms
11,564 KB
testcase_40 AC 268 ms
7,680 KB
testcase_41 AC 525 ms
11,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/segtree>
using namespace atcoder;
using namespace std;
using ll = long long;
ll INF = (1LL << 60);
ll op(ll a, ll b) {
	return min(a, b);
}
ll e() {
	return INF;
}
int main() {
	int N;cin >> N;
	vector<ll> P(N + 1, 0);
	vector<ll>A(N + 1, 0);
	for (int i = 1;i <= N;i++)cin >> P[i];
	for (int i = 1;i <= N;i++) cin >> A[i];
	vector<ll> S(N + 1, 0);
	for (int i = 1;i <= N;i++) S[i] = S[i - 1] + P[i];
	segtree<ll, op, e> seg(P);
	vector<ll> ans(N + 1, 0);
	for (int i = 1;i <= N;i++) {
		ll x = P[i];
		int ok = i;
		int ng = 0;
		while (ok - ng > 1) {
			int m = (ok + ng) / 2;
			if (seg.prod(m, i + 1) != x) {
				ng = m;
			} else {
				ok = m;
			}
		}
		int L = ok;
		ok = i;
		ng = N + 1;
		while (ng - ok > 1) {
			int m = (ok + ng) / 2;
			if (seg.prod(i, m + 1) != x) {
				ng = m;
			} else {
				ok = m;
			}
		}
		int R = ok;
		if (i - L >= R - i) {
			for (int j = i;j <= R;j++) {
				auto itr = lower_bound(S.begin(), S.end(), S[j] - A[x]);
				int t = itr - S.begin();
				if (t + 1 > i) continue;
				int st = max(t + 1, L);
				ans[x] += i - st + 1;
			}
		} else {
			for (int j = i;j >= L;j--) {
				auto itr = upper_bound(S.begin(), S.end(), S[j - 1] + A[x]);
				itr--;
				int t = itr - S.begin();
				if (t < i) continue;
				int ed = min(t, R);
				ans[x] += ed - i + 1;
			}
		}
	}
	for (int x = 1;x <= N;x++) cout << ans[x] << endl;
}
0