結果

問題 No.1496 不思議な数え上げ
ユーザー りあんりあん
提出日時 2021-04-30 22:30:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 3,000 ms
コード長 1,426 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 210,380 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-07-19 02:05:04
合計ジャッジ時間 11,214 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 124 ms
17,280 KB
testcase_04 AC 124 ms
17,280 KB
testcase_05 AC 120 ms
17,280 KB
testcase_06 AC 134 ms
17,280 KB
testcase_07 AC 133 ms
17,280 KB
testcase_08 AC 135 ms
17,152 KB
testcase_09 AC 139 ms
17,152 KB
testcase_10 AC 135 ms
17,152 KB
testcase_11 AC 134 ms
17,152 KB
testcase_12 AC 118 ms
17,152 KB
testcase_13 AC 122 ms
17,280 KB
testcase_14 AC 126 ms
17,280 KB
testcase_15 AC 120 ms
17,280 KB
testcase_16 AC 128 ms
17,280 KB
testcase_17 AC 172 ms
17,280 KB
testcase_18 AC 176 ms
17,152 KB
testcase_19 AC 177 ms
17,152 KB
testcase_20 AC 167 ms
17,280 KB
testcase_21 AC 176 ms
17,280 KB
testcase_22 AC 181 ms
17,280 KB
testcase_23 AC 190 ms
17,280 KB
testcase_24 AC 176 ms
17,280 KB
testcase_25 AC 164 ms
17,152 KB
testcase_26 AC 164 ms
17,280 KB
testcase_27 AC 187 ms
17,280 KB
testcase_28 AC 187 ms
17,280 KB
testcase_29 AC 190 ms
17,280 KB
testcase_30 AC 189 ms
17,152 KB
testcase_31 AC 183 ms
17,152 KB
testcase_32 AC 147 ms
15,360 KB
testcase_33 AC 74 ms
10,112 KB
testcase_34 AC 70 ms
9,728 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 159 ms
15,744 KB
testcase_37 AC 80 ms
10,624 KB
testcase_38 AC 74 ms
9,984 KB
testcase_39 AC 102 ms
12,672 KB
testcase_40 AC 57 ms
8,704 KB
testcase_41 AC 111 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using P = pair<int, int>;
const int M = 1000000007;
// const int M = 998244353;
const long long LM = 1LL << 60;


int main() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    int n;
    cin >> n;
    vector<int> p(n), idx(n);
    vector<long long> a(n);
    for (int i = 0; i < n; ++i) {
        cin >> p[i];
        idx[p[i] - 1] = i;
    }
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
    }
    vector<long long> imos(n + 1);
    for (int i = 0; i < n; ++i) {
        imos[i + 1] = imos[i] + p[i];
    }
    set<int> se;
    se.insert(-1);
    se.insert(n);
    for (int k = 0; k < n; ++k) {
        long long ans = 0;
        int i = idx[k];
        int l, r;
        {
            auto ptr = se.insert(i).first;
            l = *prev(ptr) + 1;
            r = *next(ptr);
        }
        int dl = i - l + 1;
        int dr = r - i;
        if (dl <= dr) {
            for (int j = l; j <= i; ++j) {
                auto ptr = upper_bound(imos.begin(), imos.begin() + r + 1, a[k] + imos[j]);
                ans += max(ptr - (imos.begin() + i) - 1, 0L);
            }
        }
        else {
            for (int j = i + 1; j <= r; ++j) {
                auto ptr = lower_bound(imos.begin() + l, imos.end(), imos[j] - a[k]);
                ans += max((imos.begin() + i) - ptr + 1, 0L);
            }
        }
        cout << ans << '\n';
    }


    return 0;
}
0