結果

問題 No.2101 [Cherry Alpha N] ずっとこの数列だったらいいのに
ユーザー tailstails
提出日時 2022-10-15 11:07:46
言語 cLay
(20240714-1)
結果
AC  
実行時間 240 ms / 6,000 ms
コード長 506 bytes
コンパイル時間 7,312 ms
コンパイル使用メモリ 228,972 KB
実行使用メモリ 34,176 KB
最終ジャッジ日時 2024-06-26 19:40:09
合計ジャッジ時間 18,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 161 ms
19,904 KB
testcase_04 AC 240 ms
26,820 KB
testcase_05 AC 62 ms
19,332 KB
testcase_06 AC 94 ms
23,568 KB
testcase_07 AC 106 ms
25,640 KB
testcase_08 AC 101 ms
24,504 KB
testcase_09 AC 52 ms
15,180 KB
testcase_10 AC 48 ms
15,540 KB
testcase_11 AC 75 ms
21,072 KB
testcase_12 AC 89 ms
20,812 KB
testcase_13 AC 76 ms
16,268 KB
testcase_14 AC 57 ms
20,116 KB
testcase_15 AC 203 ms
26,300 KB
testcase_16 AC 105 ms
24,184 KB
testcase_17 AC 44 ms
14,004 KB
testcase_18 AC 145 ms
31,872 KB
testcase_19 AC 143 ms
31,260 KB
testcase_20 AC 146 ms
34,060 KB
testcase_21 AC 144 ms
31,204 KB
testcase_22 AC 147 ms
31,244 KB
testcase_23 AC 146 ms
33,984 KB
testcase_24 AC 145 ms
34,176 KB
testcase_25 AC 145 ms
31,824 KB
testcase_26 AC 144 ms
30,940 KB
testcase_27 AC 144 ms
31,516 KB
testcase_28 AC 146 ms
31,692 KB
testcase_29 AC 144 ms
31,696 KB
testcase_30 AC 145 ms
32,080 KB
testcase_31 AC 147 ms
31,452 KB
testcase_32 AC 150 ms
32,124 KB
testcase_33 AC 134 ms
31,032 KB
testcase_34 AC 134 ms
31,068 KB
testcase_35 AC 132 ms
31,388 KB
testcase_36 AC 130 ms
31,572 KB
testcase_37 AC 132 ms
32,000 KB
testcase_38 AC 23 ms
19,764 KB
testcase_39 AC 54 ms
21,712 KB
testcase_40 AC 82 ms
30,840 KB
testcase_41 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,a[n],t[],u[],x[],y[];
rd((a,t--)(n));
rep(i,n){
	x[i]=a[i]+t[i];
}
sortA_index(n,x,y);
sortA_index(n,t,a,u);
ll@q,d[q],l[],r[],v[],w[];
rd((d,l--,r--)(q));
sortA_index(q,d,l,r,v);
fenwick<ll>f0,f1;
f0.malloc(n,1);
f1.malloc(n,1);
rep(i,n){
	f0.add(u[i],a[i]);
}
ll b=0,c=0;
rep(j,q){
	while(b<n&&t[b]<d[j]){
		f0.add(u[b],t[b]);
		f1.add(u[b],1);
		++b;
	}
	while(c<n&&x[c]<d[j]){
		f0.add(y[c],-x[c]);
		f1.add(y[c],-1);
		++c;
	}
	w[v[j]]=f0.range(l[j],r[j])-d[j]*f1.range(l[j],r[j]);
}
wtLn(w(q));
0