結果
問題 | No.1000 Point Add and Array Add |
ユーザー | ok |
提出日時 | 2020-02-28 23:20:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 318 ms / 2,000 ms |
コード長 | 1,281 bytes |
コンパイル時間 | 922 ms |
コンパイル使用メモリ | 87,552 KB |
実行使用メモリ | 7,936 KB |
最終ジャッジ日時 | 2024-10-13 19:11:50 |
合計ジャッジ時間 | 4,996 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 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 | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 210 ms
7,168 KB |
testcase_17 | AC | 159 ms
5,504 KB |
testcase_18 | AC | 315 ms
7,936 KB |
testcase_19 | AC | 318 ms
7,808 KB |
testcase_20 | AC | 250 ms
7,936 KB |
testcase_21 | AC | 257 ms
7,936 KB |
testcase_22 | AC | 267 ms
7,808 KB |
testcase_23 | AC | 267 ms
7,808 KB |
ソースコード
#include<iostream> #include<string> #include<iomanip> #include<cmath> #include<vector> #include<algorithm> using namespace std; #define int long long #define endl "\n" constexpr long long INF = (long long)1e18; constexpr long long MOD = 1'000'000'007; signed main(){ cin.tie(nullptr); ios::sync_with_stdio(false); cout<<fixed<<setprecision(10); int N, Q, q;; vector<int> A, B, con; vector<pair<int,int>> p; cin>>N>>Q; A.resize(N); B.resize(N); con.resize(N+1); q = 1 + (int)sqrt(Q); for(int i = 0; i < N; i++){ cin>>A[i]; } for(int i = 0, b = 0; i < Q; i++){ char c; int x, y; cin>>c>>x>>y; if(c == 'A') { x--; p.push_back({x, y}); } else { x--; y--; con[x]++; con[y+1]--; for(int j = 0; j < p.size(); j++){ if(x <= p[j].first && p[j].first <= y) { B[p[j].first] += p[j].second; } } } if(i%q == 0 || i + 1 == Q) { for(int i = 0; i < N; i++){ con[i+1] += con[i]; } for(int i = 0; i < N; i++){ B[i] += A[i] * con[i]; con[i] = 0; } con[N] = 0; for(int j = 0; j < p.size(); j++){ A[p[j].first] += p[j].second; } p.clear(); } } for(int i = 0; i < N; i++){ if(i) cout<<" "; cout<<B[i]; } cout<<endl; return 0; }