結果
問題 | No.1000 Point Add and Array Add |
ユーザー | petite_prog |
提出日時 | 2020-02-28 22:12:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 146 ms / 2,000 ms |
コード長 | 5,059 bytes |
コンパイル時間 | 1,887 ms |
コンパイル使用メモリ | 179,384 KB |
実行使用メモリ | 22,364 KB |
最終ジャッジ日時 | 2024-10-13 17:46:56 |
合計ジャッジ時間 | 4,841 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,820 KB |
testcase_12 | AC | 3 ms
6,820 KB |
testcase_13 | AC | 3 ms
6,816 KB |
testcase_14 | AC | 3 ms
6,816 KB |
testcase_15 | AC | 3 ms
6,816 KB |
testcase_16 | AC | 111 ms
16,868 KB |
testcase_17 | AC | 87 ms
18,092 KB |
testcase_18 | AC | 146 ms
21,808 KB |
testcase_19 | AC | 146 ms
21,368 KB |
testcase_20 | AC | 131 ms
21,524 KB |
testcase_21 | AC | 141 ms
22,364 KB |
testcase_22 | AC | 142 ms
21,520 KB |
testcase_23 | AC | 143 ms
21,312 KB |
ソースコード
/* ∫ ∫ ∫ ノヽ (_ ) (_ ) (______ ) ヽ(´・ω・)ノ | / UU */ #pragma region macro #include <bits/stdc++.h> typedef long long int64; using namespace std; using P = pair<int64, int64>; typedef vector<int> vi; const int MOD = (int)1e9 + 7; const int64 INF = 1LL << 62; const int inf = 1<<30; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } #define REP(i, n) for (int i = 0; i < (n); i++) #define FOR(i,s,n) for (int i = s; i < (n); i++) #define ALL(obj) (obj).begin(), (obj).end() //コンテナじゃないと使えない!! #define debug(x) cerr << #x << ": " << x << "\n"; #define mp make_pair #define bn '\n' template <typename T> ostream& operator<<(ostream& os, vector<T> &V){ int N = V.size(); REP(i,N){ os << V[i]; if (i!=N-1) os << " "; } os << "\n"; return os; } template <typename T,typename S> ostream& operator<<(ostream& os, pair<T,S> const&P){ os << "("; os << P.first; os << " , "; os << P.second; os << ")"; return os; } template <typename T> ostream& operator<<(ostream& os, set<T> &S){ auto it=S.begin(); while(it!=S.end()){ os << *it; os << " "; it++; } os << "\n"; return os; } template <typename T> ostream& operator<<(ostream& os, deque<T> &q){ for(auto it=q.begin();it<q.end();it++){ os<<*it; os<<" "; } os<<endl; return os; } vector<pair<int,int>> dxdy = {mp(0,1),mp(1,0),mp(-1,0),mp(0,-1)}; #pragma endregion //fixed<<setprecision(10)<<ans<<endl; template <typename T> struct SegmentTree{ /* ~~~~1-indexで実装~~~~ 1 2 3 4 5 6 7 ~~~~親・兄弟・子へのアクセスの仕方~~~~ i<<1 i i^1 i<<1|0 i<<1|1 */ using F = function<T(T,T)>; int N; F func; //関数(minとか) T identity; //単位元 vector<T> data; //上から添字 2*Nくらいのノード SegmentTree(){} SegmentTree(F f,T identity):func(f),identity(identity){} void init(int n_){ N=1; while(N<n_) N<<=1; //完全二分木がいいので2^k個にする data.assign(N<<1, identity); //2N個のノード } //木を構成(vectorを元に各ノードの値を計算) void build(const vector<T>& v){ int n_ = v.size(); init(n_); for(int i=0; i<n_; i++){ data[N+i] = v[i]; //葉 } for(int i=N-1; i; i--){ data[i] = func(data[i<<1], data[(i<<1)+1] ); //子をみて親を更新 } } //k番目の値をxに変える void set_val(int k, T x){ k+=N; //indexをセグ木でのindexに変換 data[k] = x; //値の書き換え(葉) while(k>>=1){ //右シフトして0にならない間 data[k] = func(data[k<<1], data[(k<<1)+1] ); } } //https://hcpc-hokudai.github.io/archive/structure_segtree_001.pdf //閉開区間[left,right)で T query(int left,int right){ T left_val=identity, right_val=identity; for(int l=left+N,r=right+N; l<r; l>>=1,r>>=1){ if(l&1) left_val = func(left_val, data[l++] ); if(r&1) right_val = func(data[--r], right_val); } return func(left_val, right_val); } //葉の値を取得する T get_val(int idx){ return data[idx+N]; } }; template <typename T> ostream& operator<<(ostream& os, SegmentTree<T> &S){ int N = S.data.size(); int cnt = 0; int up = 1; for(int i=1;i<N;i++){ if(S.data[i]!=S.identity){ os << S.data[i]; }else os << "単"; os << " "; cnt++; if (cnt == up){ os << "\n\n"; up<<=1; cnt=0; }else if (cnt%2==0) os<<","; } os << "\n"; return os; }; int main(){ //imos法をsegment_treeで管理する cin.tie(0); ios::sync_with_stdio(false); int N,Q; cin >> N >> Q; vector<int64> A(N); REP(i,N) cin>>A[i]; vector<vector<int64>> queries; SegmentTree<int64> S( [](int64 a,int64 b)->int64{ return a+b; }, 0 ); S.init(N+1); REP(i,Q){ char A; int64 x,y; cin >> A >> x >> y; vector<int64> tmp = {0,--x,y}; if(A=='A') tmp[0]=1; queries.push_back(tmp); } reverse(ALL(queries)); vector<int64> ans(N,0); REP(i,Q){ int64 A,x,y; A=queries[i][0]; x=queries[i][1]; y=queries[i][2]; if(A){ int64 add_cnt = S.query(0,x+1); ans[x] += add_cnt*y; }else{ S.set_val(x,S.get_val(x) + 1); S.set_val(y,S.get_val(y) - 1); } } REP(i,N){ int64 add_cnt = S.query(0,i+1); ans[i] += add_cnt*A[i]; } cout << ans; }