結果

問題 No.1526 Sum of Mex 2
ユーザー spipipikespipipike
提出日時 2021-06-01 17:59:18
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 447 bytes
コンパイル時間 1,671 ms
コンパイル使用メモリ 173,840 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-09 00:14:21
合計ジャッジ時間 6,693 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10 TLE * 1 -- * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); i++)
#define per(i,n) for (int i = (n)-1; i>=0; i--)
using namespace std;
using ll = long long;
using P = pair<int,int>;

int main(){
	int n;
	cin>>n;
	vector<int> a(n);
	rep(i, n) cin>>a[i];

	set<int> se;
	ll tot=0;
	per(l, n){
		for(int i=1; i<=n+1; i++) se.insert(i);
		for(int r=l; r<n; r++){
			se.erase(a[r]);
			tot+= *(se.begin());
		}
	}

	cout<<tot<<endl;
	return 0;
}
0