結果
問題 | No.2065 Sum of Min |
ユーザー | milanis48663220 |
提出日時 | 2022-09-02 21:40:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,376 bytes |
コンパイル時間 | 1,915 ms |
コンパイル使用メモリ | 140,712 KB |
実行使用メモリ | 41,280 KB |
最終ジャッジ日時 | 2024-11-16 02:48:19 |
合計ジャッジ時間 | 18,674 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,640 KB |
testcase_01 | AC | 2 ms
20,232 KB |
testcase_02 | AC | 2 ms
13,760 KB |
testcase_03 | AC | 2 ms
13,636 KB |
testcase_04 | AC | 277 ms
41,280 KB |
testcase_05 | AC | 278 ms
34,220 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | AC | 327 ms
34,208 KB |
testcase_10 | AC | 318 ms
34,336 KB |
testcase_11 | AC | 317 ms
34,220 KB |
testcase_12 | AC | 340 ms
34,216 KB |
testcase_13 | AC | 334 ms
34,276 KB |
testcase_14 | AC | 342 ms
34,328 KB |
testcase_15 | AC | 340 ms
34,332 KB |
testcase_16 | AC | 343 ms
34,336 KB |
testcase_17 | AC | 342 ms
34,216 KB |
testcase_18 | AC | 348 ms
34,332 KB |
testcase_19 | AC | 342 ms
34,336 KB |
testcase_20 | AC | 332 ms
34,332 KB |
testcase_21 | AC | 332 ms
34,340 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #include <atcoder/segtree> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } struct S{ int cnt; ll sum; S(int cnt, ll sum): cnt(cnt), sum(sum) {} }; S op(S x, S y){ return S(x.cnt+y.cnt, x.sum+y.sum); } S e(){ return S(0, 0); } using Seg = atcoder::segtree<S, op, e>; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n, q; cin >> n >> q; vector<ll> a(n); map<int, vector<int>> adds; for(int i = 0; i < n; i++) { cin >> a[i]; adds[a[i]].push_back(i); } vector<int> l(q), r(q), x(q); map<int, vector<int>> queries; for(int i = 0; i < q; i++) { cin >> l[i] >> r[i] >> x[i]; l[i]--; queries[x[i]].push_back(i); } auto v = a; for(int y: x) v.push_back(y); sort(v.begin(), v.end()); Seg seg(n); vector<ll> ans(q); for(int x: v){ if(adds.count(x)){ for(int i: adds[x]){ seg.set(i, S(1, x)); } } if(queries.count(x)){ for(int i: queries[x]){ auto s = seg.prod(l[i], r[i]); ans[i] = s.sum + (ll)(r[i]-l[i] - s.cnt)*x; } } } print_vector(ans, '\n'); }