結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,824 KB
testcase_02 AC 2 ms
6,824 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 14 ms
6,944 KB
testcase_09 AC 18 ms
8,864 KB
testcase_10 AC 7 ms
6,820 KB
testcase_11 AC 9 ms
6,820 KB
testcase_12 AC 17 ms
9,900 KB
testcase_13 AC 21 ms
7,140 KB
testcase_14 AC 21 ms
9,796 KB
testcase_15 AC 22 ms
10,368 KB
testcase_16 AC 22 ms
7,012 KB
testcase_17 AC 21 ms
9,716 KB
testcase_18 AC 21 ms
7,140 KB
testcase_19 AC 19 ms
7,012 KB
testcase_20 AC 20 ms
9,092 KB
testcase_21 AC 21 ms
8,960 KB
testcase_22 AC 22 ms
9,084 KB
testcase_23 AC 20 ms
10,476 KB
testcase_24 AC 20 ms
10,624 KB
testcase_25 AC 20 ms
8,928 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