結果

問題 No.1496 不思議な数え上げ
ユーザー SSRSSSRS
提出日時 2021-04-30 23:05:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 569 ms / 3,000 ms
コード長 1,272 bytes
コンパイル時間 1,789 ms
コンパイル使用メモリ 176,980 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-07-19 02:53:58
合計ジャッジ時間 23,067 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 439 ms
18,816 KB
testcase_04 AC 443 ms
18,688 KB
testcase_05 AC 433 ms
18,816 KB
testcase_06 AC 519 ms
18,688 KB
testcase_07 AC 505 ms
18,688 KB
testcase_08 AC 502 ms
18,816 KB
testcase_09 AC 504 ms
18,688 KB
testcase_10 AC 518 ms
18,688 KB
testcase_11 AC 517 ms
18,816 KB
testcase_12 AC 454 ms
18,688 KB
testcase_13 AC 480 ms
18,688 KB
testcase_14 AC 480 ms
18,816 KB
testcase_15 AC 483 ms
18,688 KB
testcase_16 AC 496 ms
18,816 KB
testcase_17 AC 527 ms
18,816 KB
testcase_18 AC 532 ms
18,816 KB
testcase_19 AC 521 ms
18,688 KB
testcase_20 AC 516 ms
18,816 KB
testcase_21 AC 512 ms
18,816 KB
testcase_22 AC 508 ms
18,688 KB
testcase_23 AC 506 ms
18,816 KB
testcase_24 AC 512 ms
18,816 KB
testcase_25 AC 519 ms
18,816 KB
testcase_26 AC 569 ms
18,816 KB
testcase_27 AC 511 ms
18,816 KB
testcase_28 AC 505 ms
18,688 KB
testcase_29 AC 500 ms
18,816 KB
testcase_30 AC 534 ms
18,688 KB
testcase_31 AC 522 ms
18,816 KB
testcase_32 AC 456 ms
16,768 KB
testcase_33 AC 244 ms
10,752 KB
testcase_34 AC 221 ms
10,240 KB
testcase_35 AC 6 ms
5,376 KB
testcase_36 AC 454 ms
17,152 KB
testcase_37 AC 256 ms
11,264 KB
testcase_38 AC 251 ms
10,880 KB
testcase_39 AC 341 ms
13,568 KB
testcase_40 AC 193 ms
9,216 KB
testcase_41 AC 358 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  vector<int> P(N);
  for (int i = 0; i < N; i++){
    cin >> P[i];
  }
  vector<long long> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<long long> S(N + 1);
  S[0] = 0;
  for (int i = 0; i < N; i++){
    S[i + 1] = S[i] + P[i];
  }
  vector<int> p(N);
  for (int i = 0; i < N; i++){
    p[P[i] - 1] = i;
  }
  set<int> st;
  st.insert(-1);
  st.insert(N);
  vector<int> L(N), R(N);
  for (int i = 0; i < N; i++){
    auto itr1 = prev(st.lower_bound(p[i]));
    L[i] = *itr1 + 1;
    auto itr2 = st.lower_bound(p[i]);
    R[i] = *itr2;
    st.insert(p[i]);
  }
  for (int i = 0; i < N; i++){
    int Lcnt = p[i] - L[i] + 1;
    int Rcnt = R[i] - p[i];
    if (Lcnt <= Rcnt){
      long long ans = 0;
      for (int j = L[i]; j <= p[i]; j++){
        auto itr = upper_bound(S.begin() + p[i] + 1, S.begin() + R[i] + 1, A[i] + S[j]);
        ans += itr - (S.begin() + p[i] + 1);
      }
      cout << ans << endl;
    } else {
      long long ans = 0;
      for (int j = p[i] + 1; j <= R[i]; j++){
        auto itr = lower_bound(S.begin() + L[i], S.begin() + p[i] + 1, S[j] - A[i]);
        ans += (S.begin() + p[i] + 1) - itr;
      }
      cout << ans << endl;
    }
  }
}
0