結果
問題 | No.2065 Sum of Min |
ユーザー | akua |
提出日時 | 2022-09-04 17:34:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,966 ms / 2,000 ms |
コード長 | 2,604 bytes |
コンパイル時間 | 3,491 ms |
コンパイル使用メモリ | 189,244 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 23:35:42 |
合計ジャッジ時間 | 23,726 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 808 ms
6,816 KB |
testcase_05 | AC | 1,402 ms
6,684 KB |
testcase_06 | AC | 1,262 ms
6,684 KB |
testcase_07 | AC | 977 ms
6,684 KB |
testcase_08 | AC | 806 ms
6,688 KB |
testcase_09 | AC | 163 ms
6,684 KB |
testcase_10 | AC | 1,966 ms
6,556 KB |
testcase_11 | AC | 1,936 ms
6,820 KB |
testcase_12 | AC | 841 ms
6,816 KB |
testcase_13 | AC | 840 ms
6,820 KB |
testcase_14 | AC | 840 ms
6,816 KB |
testcase_15 | AC | 823 ms
6,816 KB |
testcase_16 | AC | 863 ms
6,816 KB |
testcase_17 | AC | 843 ms
6,816 KB |
testcase_18 | AC | 837 ms
6,816 KB |
testcase_19 | AC | 839 ms
6,816 KB |
testcase_20 | AC | 962 ms
6,816 KB |
testcase_21 | AC | 835 ms
6,816 KB |
ソースコード
#include <atcoder/all> #include <iostream> // cout, endl, cin #include <string> // string, to_string, stoi #include <vector> // vector #include <algorithm> // min, max, swap, sort, reverse, lower_bound, upper_bound #include <utility> // pair, make_pair #include <tuple> // tuple, make_tuple #include <cstdint> // int64_t, int*_t #include <cstdio> // printf #include <map> // map #include <queue> // queue, priority_queue #include <set> // set #include <stack> // stack #include <deque> // deque #include <unordered_map> // unordered_map #include <unordered_set> // unordered_set #include <bitset> // bitset #include <cctype> // isupper, islower, isdigit, toupper, tolower #include <math.h> #include <iomanip> #pragma GCC optimize("Ofast") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") using namespace std; using namespace atcoder; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define repi(i, a, b) for (int i = (int)(a); i < (int)(b); i++) typedef long long ll; typedef unsigned long long ull; const ll inf=1e18; using graph = vector<vector<int> > ; using P= pair<ll,ll>; using vi=vector<int>; using vvi=vector<vi>; using vll=vector<ll>; using vvll=vector<vll>; using vp=vector<P>; using vpp=vector<vp>; //string T="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; //string S="abcdefghijklmnopqrstuvwxyz"; //g++ main.cpp -std=c++14 -I . //cout <<setprecision(20); //cout << fixed << setprecision(10); //cin.tie(0); ios::sync_with_stdio(false); const double PI = acos(-1); int main(){cin.tie(0); ios::sync_with_stdio(false); int n,q; cin >> n >> q; vector<ll> a(n);rep(i,n)cin >> a[i]; int x=sqrt(n)+1; int si=n/x+2; vvi g(si); vvll sum(si,vll(x+1)); rep(i,n)g[i/x].push_back(a[i]); rep(i,si)sort(g[i].begin(),g[i].end()); rep(i,si)rep(j,g[i].size())sum[i][j+1]=sum[i][j]+g[i][j]; vll anss; auto f2=[&](int i,ll k){ int index=upper_bound(g[i].begin(),g[i].end(),k)-g[i].begin(); ll res=sum[i][index]+k*(g[i].size()-index); return res; }; auto f=[&](int l,int r,ll k){ ll res=0; if(l/x==r/x || r/x-l/x==1){ repi(i,l,r+1)res+=min(k,a[i]); } else { int now=l; while(now/x==l/x){ res+=min(k,a[now]); now++; } now=(r/x)*x; while(now<=r){ res+=min(k,a[now]); now++; } now=l/x+1; while(now<r/x){ res+=f2(now,k); now++; } } return res; }; rep(qi,q){ int l,r,k; cin >> l >> r >> k; l--;r--; ll ans=f(l,r,k); anss.push_back(ans); } for(auto u:anss)cout << u << endl; }