結果

問題 No.1496 不思議な数え上げ
ユーザー penguinmanpenguinman
提出日時 2021-04-11 05:28:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,668 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 210,696 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-07-16 03:45:00
合計ジャッジ時間 14,234 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 AC 202 ms
17,280 KB
testcase_04 AC 208 ms
17,152 KB
testcase_05 AC 204 ms
17,280 KB
testcase_06 AC 183 ms
17,280 KB
testcase_07 AC 184 ms
17,280 KB
testcase_08 AC 184 ms
17,280 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 183 ms
17,280 KB
testcase_14 AC 181 ms
17,280 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 312 ms
17,280 KB
testcase_18 WA -
testcase_19 AC 305 ms
17,152 KB
testcase_20 WA -
testcase_21 AC 307 ms
17,280 KB
testcase_22 WA -
testcase_23 AC 307 ms
17,280 KB
testcase_24 WA -
testcase_25 AC 262 ms
17,280 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 334 ms
17,280 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 263 ms
15,488 KB
testcase_33 AC 124 ms
10,240 KB
testcase_34 AC 111 ms
9,600 KB
testcase_35 AC 3 ms
6,944 KB
testcase_36 WA -
testcase_37 AC 133 ms
10,624 KB
testcase_38 AC 120 ms
10,112 KB
testcase_39 AC 182 ms
12,672 KB
testcase_40 AC 90 ms
8,576 KB
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

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++)

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