結果

問題 No.1525 Meximum Sum
ユーザー ChipppppChippppp
提出日時 2021-05-28 23:51:28
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 200,224 KB
実行使用メモリ 4,904 KB
最終ジャッジ日時 2023-08-08 15:04:09
合計ジャッジ時間 4,585 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 16 ms
4,376 KB
testcase_11 AC 24 ms
4,380 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 57 ms
4,624 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 56 ms
4,552 KB
testcase_24 AC 56 ms
4,720 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
  int N;
  cin >> N;
  vector<int> A(N);
  for (int i = 0; i < N; ++i) cin >> A[i];
  vector<int> p(N);
  for (int i = 0; i < N; ++i) p[A[i]] = i;
  long long ans = 0;
  int left = N, right = -1;
  for (int k = 0; k < N; ++k) {
    left = min(left, p[k]);
    right = max(right, p[k]);
    ans += (left + 1) * (N - right);
  }
  cout << ans << endl;
}
0