結果
問題 | No.1234 典型RMQ |
ユーザー | 紙ぺーぱー |
提出日時 | 2017-04-26 23:52:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 652 bytes |
コンパイル時間 | 1,821 ms |
コンパイル使用メモリ | 168,036 KB |
実行使用メモリ | 10,912 KB |
最終ジャッジ日時 | 2024-07-20 00:46:22 |
合計ジャッジ時間 | 20,624 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1,174 ms
5,376 KB |
testcase_07 | AC | 355 ms
5,376 KB |
testcase_08 | AC | 1,509 ms
5,376 KB |
testcase_09 | AC | 850 ms
5,376 KB |
testcase_10 | AC | 1,322 ms
5,376 KB |
testcase_11 | AC | 1,097 ms
5,376 KB |
testcase_12 | AC | 748 ms
5,376 KB |
testcase_13 | AC | 381 ms
5,376 KB |
testcase_14 | AC | 816 ms
5,376 KB |
testcase_15 | AC | 640 ms
5,376 KB |
testcase_16 | AC | 1,359 ms
5,376 KB |
testcase_17 | AC | 829 ms
5,376 KB |
testcase_18 | AC | 254 ms
5,376 KB |
testcase_19 | AC | 1,511 ms
5,376 KB |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,N) for(int i=0;i<N;i++) using namespace std; typedef long long ll; constexpr ll ten(int n){return n==0?1:10*ten(n-1);} const int B=350; const ll MX=ten(15); int n,q; ll a[ten(5)]; int main(){ cin>>n; assert(1<=n&&n<=ten(5)); rep(i,n){ ll x; cin>>x; assert(-ten(10)<=x&&x<=ten(10)); a[i]=x; } cin>>q; assert(1<=q&&q<=ten(5)); rep(i,q){ int k,l,r,c; cin>>k>>l>>r>>c; assert(k==1||k==2); assert(1<=l&&l<=r&&r<=n); assert(-ten(4)<=c&&c<=ten(4)); l--; if(k==1)for(int i=l;i<r;i++)a[i]+=c; else{ ll ma=ten(18); for(int i=l;i<r;i++)ma=min(ma,a[i]); cout<<ma<<endl; } } }