結果
問題 | No.2065 Sum of Min |
ユーザー | shobonvip |
提出日時 | 2022-09-02 22:32:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,761 ms / 2,000 ms |
コード長 | 994 bytes |
コンパイル時間 | 4,667 ms |
コンパイル使用メモリ | 266,604 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-16 04:39:35 |
合計ジャッジ時間 | 21,515 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 466 ms
6,820 KB |
testcase_05 | AC | 748 ms
6,816 KB |
testcase_06 | AC | 897 ms
6,824 KB |
testcase_07 | AC | 559 ms
6,816 KB |
testcase_08 | AC | 504 ms
6,820 KB |
testcase_09 | AC | 279 ms
6,816 KB |
testcase_10 | AC | 1,761 ms
6,816 KB |
testcase_11 | AC | 1,749 ms
6,820 KB |
testcase_12 | AC | 825 ms
6,820 KB |
testcase_13 | AC | 826 ms
6,816 KB |
testcase_14 | AC | 823 ms
6,820 KB |
testcase_15 | AC | 830 ms
6,820 KB |
testcase_16 | AC | 828 ms
6,816 KB |
testcase_17 | AC | 850 ms
6,820 KB |
testcase_18 | AC | 838 ms
6,816 KB |
testcase_19 | AC | 847 ms
6,816 KB |
testcase_20 | AC | 886 ms
6,816 KB |
testcase_21 | AC | 840 ms
6,816 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; typedef modint998244353 mint; typedef long long ll; int main(){ int n,q; cin >> n >> q; int b = int(pow(n, 0.5) + 1); vector<ll> a(n), dat(n), pfix(n); for (int i=0; i<n; i++){ cin >> a[i]; dat[i] = a[i]; } for (int i=0; i<b; i++){ sort(dat.begin() + min(n, i*b), dat.begin() + min(n, (i+1)*b)); ll tmp = 0; for (int j=i*b; j<min(n, (i+1)*b); j++){ tmp += dat[j]; pfix[j] = tmp; } } for (int cases=0; cases<q; cases++){ int l,r; ll x; cin >> l >> r >> x; l--; int tl = l+b-(l%b), tr = r-(r%b); ll ans = 0; for (int i=l; i<min(r,tl); i++){ ans += min(x, a[i]); } for (int i=tl/b; i<tr/b; i++){ int targ = lower_bound(dat.begin() + i*b, dat.begin() + (i+1)*b, x) - dat.begin() - i*b; ans += (b-targ) * x; if (targ > 0) ans += pfix[i*b+targ-1]; } for (int i=max(tl,tr); i<r; i++){ ans += min(x, a[i]); } cout << ans << endl; } }