結果

問題 No.1525 Meximum Sum
ユーザー vjudge1vjudge1
提出日時 2024-10-20 21:45:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 1,841 ms
コンパイル使用メモリ 201,816 KB
実行使用メモリ 10,248 KB
最終ジャッジ日時 2024-10-20 21:45:52
合計ジャッジ時間 3,137 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 14 ms
6,820 KB
testcase_09 AC 18 ms
10,248 KB
testcase_10 AC 7 ms
8,080 KB
testcase_11 AC 9 ms
6,820 KB
testcase_12 AC 16 ms
9,976 KB
testcase_13 AC 20 ms
9,212 KB
testcase_14 AC 19 ms
9,924 KB
testcase_15 AC 20 ms
8,940 KB
testcase_16 AC 20 ms
10,072 KB
testcase_17 AC 21 ms
9,340 KB
testcase_18 AC 21 ms
8,936 KB
testcase_19 AC 20 ms
7,144 KB
testcase_20 AC 22 ms
9,212 KB
testcase_21 AC 21 ms
9,092 KB
testcase_22 AC 22 ms
9,924 KB
testcase_23 AC 19 ms
9,104 KB
testcase_24 AC 20 ms
7,140 KB
testcase_25 AC 18 ms
7,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
long long n,a[500500],at[500500];
long long ans,tot,l,r;
int main(){
	ios::sync_with_stdio(0);
	cin.tie(0),cout.tie(0);
	cin>>n; 
    for(int i=1;i<=n;i++){
        cin>>a[i];
        at[a[i]]=i;
    }
    l=r=at[0];
    tot=1;
    for(int i=1;i<=n-1;i++){
    	if(l<at[i]&&at[i]<r){
    		tot++;
    		continue;
		}
		else if(l>at[i]){
			ans+=(n-r+1)*(l-at[i])*tot;
			tot++;
			l=at[i];
		}
		else{
			ans+=(at[i]-r)*l*tot;
			tot++;
			r=at[i];
		}
	}
	cout<<ans+tot;
}
0