結果

問題 No.1234 典型RMQ
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2017-04-26 23:59:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 500 bytes
コンパイル時間 1,589 ms
コンパイル使用メモリ 166,260 KB
実行使用メモリ 11,168 KB
最終ジャッジ日時 2024-07-20 00:47:44
合計ジャッジ時間 16,806 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,472 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1,013 ms
5,376 KB
testcase_07 AC 223 ms
5,376 KB
testcase_08 AC 1,365 ms
5,376 KB
testcase_09 AC 713 ms
5,376 KB
testcase_10 AC 1,195 ms
5,376 KB
testcase_11 AC 956 ms
5,376 KB
testcase_12 AC 628 ms
5,376 KB
testcase_13 AC 257 ms
5,376 KB
testcase_14 AC 670 ms
5,376 KB
testcase_15 AC 506 ms
5,376 KB
testcase_16 AC 1,197 ms
5,376 KB
testcase_17 AC 670 ms
5,376 KB
testcase_18 AC 110 ms
5,376 KB
testcase_19 AC 1,330 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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(){
	scanf("%d",&n);
	rep(i,n)scanf("%lld",&a[i]);
	scanf("%d",&q);
	rep(i,q){
		int k,l,r,c;
		scanf("%d%d%d%d",&k,&l,&r,&c);
		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]);
			printf("%lld\n",ma);
		}

	}
}
0