結果

問題 No.1496 不思議な数え上げ
ユーザー penguinmanpenguinman
提出日時 2021-04-07 00:58:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 233 ms / 3,000 ms
コード長 1,980 bytes
コンパイル時間 2,057 ms
コンパイル使用メモリ 213,068 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-07-16 03:39:54
合計ジャッジ時間 11,958 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 129 ms
15,744 KB
testcase_04 AC 131 ms
15,744 KB
testcase_05 AC 130 ms
15,744 KB
testcase_06 AC 167 ms
15,744 KB
testcase_07 AC 165 ms
15,744 KB
testcase_08 AC 168 ms
15,744 KB
testcase_09 AC 170 ms
15,744 KB
testcase_10 AC 167 ms
15,872 KB
testcase_11 AC 171 ms
15,744 KB
testcase_12 AC 115 ms
15,744 KB
testcase_13 AC 166 ms
15,744 KB
testcase_14 AC 162 ms
15,744 KB
testcase_15 AC 165 ms
15,744 KB
testcase_16 AC 168 ms
15,872 KB
testcase_17 AC 213 ms
15,744 KB
testcase_18 AC 209 ms
15,744 KB
testcase_19 AC 204 ms
15,744 KB
testcase_20 AC 202 ms
15,744 KB
testcase_21 AC 205 ms
15,744 KB
testcase_22 AC 203 ms
15,872 KB
testcase_23 AC 201 ms
15,744 KB
testcase_24 AC 199 ms
15,744 KB
testcase_25 AC 175 ms
15,872 KB
testcase_26 AC 198 ms
15,744 KB
testcase_27 AC 224 ms
15,744 KB
testcase_28 AC 232 ms
15,744 KB
testcase_29 AC 232 ms
15,744 KB
testcase_30 AC 226 ms
15,744 KB
testcase_31 AC 233 ms
15,744 KB
testcase_32 AC 180 ms
14,208 KB
testcase_33 AC 90 ms
9,472 KB
testcase_34 AC 84 ms
8,960 KB
testcase_35 AC 3 ms
6,940 KB
testcase_36 AC 179 ms
14,464 KB
testcase_37 AC 100 ms
9,856 KB
testcase_38 AC 86 ms
9,344 KB
testcase_39 AC 123 ms
11,648 KB
testcase_40 AC 66 ms
8,064 KB
testcase_41 AC 134 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using std::cin;
using std::cout;
using std::endl;
using std::vector;
using ll = long long;
#define rep(i,j,k) for(int i=int(j); i<int(k); i++)
#define REP(i,j,k) for(int i=int(j); i<=int(k); i++)
#define per(i,j,k) for(int i=int(j); int(k)<=i; i--)

int main(){
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    int N; cin >> N;
    vector<int> P(N), rev(N);
    rep(i,0,N) cin >> P[i];
    vector<ll> sum(N+1);
    rep(i,0,N){
        sum[i+1] = sum[i]+P[i];
        rev[--P[i]] = i;
    }
    std::set<int> set;
    set.insert(-1);
    set.insert(N);
    rep(i,0,N){
        ll A; cin >> A;
        auto itr = set.lower_bound(rev[i]);
        int right = *itr;
        itr--;
        int left = *itr;
        ll ans = 0;
        if(right-rev[i] < rev[i]-left){
            int L = std::lower_bound(sum.begin(),sum.end(),sum[rev[i]+1]-A)-sum.begin();
            rep(r,rev[i],right){
                //右端固定
                //left < l ≤ rev[i] を満たす必要がある
                for(;;L++){
                    if(sum[r+1]-sum[L] <= A) break;
                }
                int l = L;
                l = std::max(l, left+1);
                l = std::min(l, rev[i]+1);
                ans += rev[i]-l+1;
            }
        }
        else{
            int R = std::upper_bound(sum.begin(),sum.end(),sum[rev[i]]+A)-sum.begin()-1;
            per(l,rev[i],left+1){
                //左端固定
                for(;;R--){
                    if(sum[R]-sum[l] <= A) break;
                }
                int r = R-1;
                //rev[i] ≤ r < right を満たす必要がある
                r = std::min(r, right-1);
                r = std::max(r, rev[i]-1);
                ans += r-rev[i]+1;
            }
        }
        cout << ans << "\n";
        set.insert(rev[i]);
    }
}
0