結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 14 ms
9,672 KB
testcase_09 AC 18 ms
9,704 KB
testcase_10 AC 6 ms
6,820 KB
testcase_11 AC 9 ms
6,820 KB
testcase_12 AC 17 ms
8,764 KB
testcase_13 AC 21 ms
9,196 KB
testcase_14 AC 21 ms
7,016 KB
testcase_15 AC 22 ms
9,852 KB
testcase_16 AC 21 ms
9,576 KB
testcase_17 AC 21 ms
9,216 KB
testcase_18 AC 22 ms
9,208 KB
testcase_19 AC 21 ms
9,568 KB
testcase_20 AC 21 ms
7,136 KB
testcase_21 AC 21 ms
8,960 KB
testcase_22 AC 21 ms
7,140 KB
testcase_23 AC 20 ms
10,240 KB
testcase_24 AC 20 ms
10,628 KB
testcase_25 AC 20 ms
9,204 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