結果

問題 No.1687 What the Heck?
ユーザー zezerozezero
提出日時 2021-09-24 22:12:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 1,155 ms
コンパイル使用メモリ 108,192 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-07-05 10:43:58
合計ジャッジ時間 3,438 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 60 ms
6,944 KB
testcase_08 AC 93 ms
8,192 KB
testcase_09 AC 59 ms
6,944 KB
testcase_10 AC 37 ms
6,940 KB
testcase_11 AC 40 ms
6,940 KB
testcase_12 AC 223 ms
12,800 KB
testcase_13 AC 219 ms
12,800 KB
testcase_14 AC 214 ms
12,800 KB
testcase_15 AC 212 ms
12,800 KB
testcase_16 AC 214 ms
12,544 KB
testcase_17 AC 12 ms
6,940 KB
testcase_18 AC 224 ms
12,800 KB
testcase_19 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <set>
#include <map>
#include <queue>
#include <cmath>
using namespace std;
typedef long long ll;
#define rep(i, n) for (int i=0;i < (int)(n);i++)

int main(){
    ll n;
    cin >> n;
    ll ans = 0;
    if (n == 1){
        cout << 0 << endl;
        return 0;
    }
    map<int,int> mp;
    rep(i,n){
        ll x;
        cin >> x;
        mp[int(x)] = i+1; 
    }
    ll sum = n*(n+1)/2;
    for (int i = n;i >= 1;i--){
        ans = max(sum - 2*mp[i],ans);
        sum -= mp[i];
    }

    cout << ans << endl;

    return 0;
}
0