結果

問題 No.1687 What the Heck?
ユーザー noya2noya2
提出日時 2021-07-18 18:43:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 855 bytes
コンパイル時間 7,198 ms
コンパイル使用メモリ 334,680 KB
実行使用メモリ 14,988 KB
最終ジャッジ日時 2024-07-05 09:49:53
合計ジャッジ時間 8,521 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 24 ms
6,700 KB
testcase_08 AC 31 ms
9,340 KB
testcase_09 AC 22 ms
6,816 KB
testcase_10 AC 15 ms
6,444 KB
testcase_11 AC 15 ms
6,504 KB
testcase_12 AC 71 ms
14,860 KB
testcase_13 AC 66 ms
14,860 KB
testcase_14 AC 63 ms
14,984 KB
testcase_15 AC 62 ms
14,988 KB
testcase_16 AC 68 ms
14,808 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 64 ms
14,988 KB
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"
#include<bits/stdc++.h>
using namespace std;

using ll = long long;
using pll = pair<ll,ll>;

int main(){
	registerValidation();
	ll n = inf.readInt(1,200000,"n");
	inf.readEoln();
	vector<pll> ar(n);
	for (int i = 0; i < n; i++){
	    ll c = inf.readInt(1,n,"c");
	    ar[i] = pll(-c,ll(i+1));
	    if (i == n-1) inf.readEoln();
	    else inf.readSpace();
	}
	sort(ar.begin(),ar.end());
	if (n == 1){
	    assert(ar[0].first == -1);
	    cout << 0 << endl;
	    inf.readEof();
	    return 0;
	}
	ll f = n * (n + 1) / 2;
	ll ima = 2 * ar[0].second;
	ll mi = ima;
	for (int i = 0; i < n-1; i++){
	    ima = ima - ar[i].second + 2 * ar[i+1].second;
	    if (i == n-2) ima -= ar[i+1].second;
	    mi = min(mi,ima);
	}
	for (int i = 0; i < n; i++){
	    assert(n+ar[i].first == i);
	}
	cout << f - mi << endl;
	inf.readEof();
	return 0;
}
0