結果

問題 No.1890 Many Sequences Sum Queries
ユーザー 👑 CleyLCleyL
提出日時 2023-07-05 13:44:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 777 ms
コンパイル使用メモリ 78,792 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 07:53:37
合計ジャッジ時間 2,823 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
5,248 KB
testcase_01 AC 167 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 71 ms
5,376 KB
testcase_08 AC 16 ms
5,376 KB
testcase_09 AC 18 ms
5,376 KB
testcase_10 AC 156 ms
5,376 KB
testcase_11 AC 79 ms
5,376 KB
testcase_12 AC 112 ms
5,376 KB
testcase_13 AC 117 ms
5,376 KB
testcase_14 AC 62 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
  long long n,q;cin>>n>>q;
  vector<long long> A(n), B,C;
  for(int i = 0; n > i; i++){
    cin>>A[i];
  }
  C.push_back(0);
  for(int i = 0; n > i; i++){
    for(int j = 1; A[i] >= j; j++){
      B.push_back(j);
      C.push_back(C[C.size()-1]+B[B.size()-1]);
    }
  }
  for(int i = 0; q > i; i++){
    long long x;cin>>x;
    auto ans = lower_bound(C.begin(),C.end(),x)-C.begin();
    if(ans == C.size()){
      cout << -1 << endl;
    }else{
      cout << ans << endl;
    }
  }
}
0