結果
問題 | No.1733 Sum of Sorted Subarrays |
ユーザー | milanis48663220 |
提出日時 | 2021-11-05 22:19:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 198 ms / 3,000 ms |
コード長 | 2,424 bytes |
コンパイル時間 | 1,767 ms |
コンパイル使用メモリ | 133,272 KB |
実行使用メモリ | 15,236 KB |
最終ジャッジ日時 | 2024-11-06 13:13:49 |
合計ジャッジ時間 | 5,802 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 3 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 92 ms
9,364 KB |
testcase_09 | AC | 150 ms
14,564 KB |
testcase_10 | AC | 82 ms
9,248 KB |
testcase_11 | AC | 106 ms
9,660 KB |
testcase_12 | AC | 120 ms
14,036 KB |
testcase_13 | AC | 118 ms
13,892 KB |
testcase_14 | AC | 195 ms
15,064 KB |
testcase_15 | AC | 176 ms
14,824 KB |
testcase_16 | AC | 86 ms
9,372 KB |
testcase_17 | AC | 192 ms
15,064 KB |
testcase_18 | AC | 140 ms
14,424 KB |
testcase_19 | AC | 150 ms
14,560 KB |
testcase_20 | AC | 142 ms
14,356 KB |
testcase_21 | AC | 169 ms
14,804 KB |
testcase_22 | AC | 103 ms
9,716 KB |
testcase_23 | AC | 198 ms
15,236 KB |
testcase_24 | AC | 197 ms
15,200 KB |
testcase_25 | AC | 197 ms
15,204 KB |
testcase_26 | AC | 125 ms
15,200 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> #include <atcoder/modint> #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; } using P = pair<int, int>; using mint = atcoder::modint998244353; struct node{ mint sum, prod; }; node e() { return node{mint(0), mint(1)}; } node opl(node n1, node n2){ // 左から return node{n1.sum+n2.sum*n1.prod, n1.prod*n2.prod}; } node opr(node n1, node n2){ // 右から return node{n2.sum+n1.sum*n2.prod, n1.prod*n2.prod}; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n; cin >> n; vector<int> a(n); vector<P> p(n); for(int i = 0; i < n; i++) { cin >> a[i]; p[i] = P(a[i], i); } sort(p.begin(), p.end()); atcoder::segtree<node, opl, e> sgtl(vector<node>(n, node{mint(1), mint(1)})); atcoder::segtree<node, opr, e> sgtr(vector<node>(n, node{mint(1), mint(1)})); mint ans = 0; for(auto [x, i]: p){ auto qr = sgtr.prod(0, i); auto ql = sgtl.prod(i+1, n); // cout << qr.sum.val() << ' ' << qr.prod.val() << ' ' << ql.sum.val() << ' ' << ql.prod.val() << endl; ans += (ql.sum+1)*(qr.sum+1)*x; sgtl.set(i, node{mint(2), mint(2)}); sgtr.set(i, node{mint(2), mint(2)}); } cout << ans.val() << endl; }