結果
問題 | No.2065 Sum of Min |
ユーザー | rieaaddlreiuu |
提出日時 | 2022-11-03 11:02:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,180 bytes |
コンパイル時間 | 1,769 ms |
コンパイル使用メモリ | 176,312 KB |
実行使用メモリ | 14,104 KB |
最終ジャッジ日時 | 2024-07-17 21:19:41 |
合計ジャッジ時間 | 7,029 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <vector> using namespace std; int search(int x,vector<int> a,int N){ if(x <= a[0]){ return -1; } if(x > a[N-1]){ return N; } int left = 0,right = N-1; int mid; while(1){ mid = (left+right)/2; if(a[mid] >= x){ right = mid; } if(a[mid + 1] < x){ left = mid; } if(a[mid] < x && x <= a[mid+1]){ break; } } return mid; } long get_ans(int N,int p,int x,vector<int> a,vector<long> a_sum){ int n = search(x,a,N); long ans; long temp = ((long)p-(long)n)*(long)x; if(n < p){ ans = a_sum[n+1] + temp; } else { ans = a_sum[p+1]; } return ans; } int main(){ int N,Q; cin >> N >> Q; vector<int> a(N,0); vector<long> a_sum(N+1,0); for(int i=0;i<N;i++){ cin >> a[i]; } sort(a.begin(),a.end()); for(int i=0;i<N;i++){ a_sum[i+1] = a_sum[i] + (long)a[i]; } int l,r,x; for(int i=0;i<Q;i++){ cin >> l >> r >> x; cout << get_ans(N,r - 1,x,a,a_sum) << " " << get_ans(N,l - 2,x,a,a_sum) << "\n"; } }