結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,824 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 15 ms
8,556 KB
testcase_09 AC 19 ms
8,760 KB
testcase_10 AC 7 ms
6,820 KB
testcase_11 AC 11 ms
6,816 KB
testcase_12 AC 18 ms
6,940 KB
testcase_13 AC 22 ms
9,748 KB
testcase_14 AC 22 ms
9,848 KB
testcase_15 AC 22 ms
10,928 KB
testcase_16 AC 22 ms
7,144 KB
testcase_17 AC 21 ms
7,016 KB
testcase_18 AC 21 ms
7,008 KB
testcase_19 AC 23 ms
10,252 KB
testcase_20 AC 22 ms
7,012 KB
testcase_21 AC 23 ms
9,088 KB
testcase_22 AC 22 ms
9,808 KB
testcase_23 AC 20 ms
9,828 KB
testcase_24 AC 20 ms
10,036 KB
testcase_25 AC 20 ms
9,828 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