結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー pekempeypekempey
提出日時 2020-04-17 22:13:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 3,500 ms
コード長 1,288 bytes
コンパイル時間 1,782 ms
コンパイル使用メモリ 174,868 KB
実行使用メモリ 15,692 KB
最終ジャッジ日時 2024-10-03 13:36:53
合計ジャッジ時間 5,508 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,064 KB
testcase_01 AC 5 ms
7,876 KB
testcase_02 AC 4 ms
8,004 KB
testcase_03 AC 6 ms
8,448 KB
testcase_04 AC 6 ms
8,256 KB
testcase_05 AC 5 ms
8,320 KB
testcase_06 AC 7 ms
8,320 KB
testcase_07 AC 6 ms
8,388 KB
testcase_08 AC 6 ms
8,448 KB
testcase_09 AC 6 ms
8,384 KB
testcase_10 AC 6 ms
8,260 KB
testcase_11 AC 46 ms
13,888 KB
testcase_12 AC 45 ms
13,952 KB
testcase_13 AC 57 ms
15,172 KB
testcase_14 AC 48 ms
14,336 KB
testcase_15 AC 53 ms
14,788 KB
testcase_16 AC 44 ms
13,952 KB
testcase_17 AC 52 ms
14,792 KB
testcase_18 AC 49 ms
14,532 KB
testcase_19 AC 53 ms
14,788 KB
testcase_20 AC 56 ms
15,360 KB
testcase_21 AC 50 ms
14,612 KB
testcase_22 AC 44 ms
13,764 KB
testcase_23 AC 46 ms
14,080 KB
testcase_24 AC 53 ms
14,976 KB
testcase_25 AC 56 ms
15,168 KB
testcase_26 AC 54 ms
14,720 KB
testcase_27 AC 48 ms
14,208 KB
testcase_28 AC 58 ms
15,172 KB
testcase_29 AC 56 ms
15,360 KB
testcase_30 AC 57 ms
15,296 KB
testcase_31 AC 57 ms
15,488 KB
testcase_32 AC 57 ms
15,300 KB
testcase_33 AC 56 ms
15,360 KB
testcase_34 AC 32 ms
15,300 KB
testcase_35 AC 36 ms
15,428 KB
testcase_36 AC 34 ms
15,616 KB
testcase_37 AC 34 ms
15,688 KB
testcase_38 AC 33 ms
15,428 KB
testcase_39 AC 32 ms
15,096 KB
testcase_40 AC 33 ms
15,232 KB
testcase_41 AC 34 ms
15,424 KB
testcase_42 AC 33 ms
15,176 KB
testcase_43 AC 33 ms
15,172 KB
testcase_44 AC 32 ms
15,176 KB
testcase_45 AC 31 ms
14,976 KB
testcase_46 AC 32 ms
15,616 KB
testcase_47 AC 33 ms
15,428 KB
testcase_48 AC 31 ms
15,428 KB
testcase_49 AC 31 ms
15,692 KB
testcase_50 AC 32 ms
15,560 KB
testcase_51 AC 37 ms
15,352 KB
testcase_52 AC 39 ms
15,300 KB
testcase_53 AC 39 ms
15,300 KB
testcase_54 AC 5 ms
8,004 KB
testcase_55 AC 5 ms
8,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
#define repr(i, n) for (int i = (n) - 1; i >= 0; i--)
#define range(a) a.begin(), a.end()

list<int> L[100000], R[100000];
int par[100000];

int find(int x) {
  if (par[x] == x) return x;
  return par[x] = find(par[x]);
}

void unite(int x, int y) {
  x = find(x);
  y = find(y);
  while (not L[x].empty() and not L[y].empty() and L[x].back() < L[y].front()) L[x].pop_back();
  while (not R[x].empty() and not R[y].empty() and R[x].back() > R[y].front()) R[y].pop_front();
  L[x].splice(L[x].end(), move(L[y]));
  R[x].splice(R[x].end(), move(R[y]));
  par[y] = x;
}

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int N; cin >> N;
  vector<int> A(N); rep(i, N) cin >> A[i], A[i]--;
  vector<int> ord(N); rep(i, N) ord[i] = i;
  sort(range(ord), [&](int i, int j) { return A[i] > A[j]; });
  rep(i, N) {
    L[i].push_back(A[i]);
    R[i].push_back(A[i]);
    par[i] = i;
  }
  ll ans = 0;
  for (int i : ord) {
    if (i - 1 >= 0 and A[i - 1] > A[i]) {
      ans += L[find(i - 1)].size();
      unite(i - 1, i);
    }
    if (i + 1 < N and A[i] < A[i + 1]) {
      ans += R[find(i + 1)].size();
      unite(i, i + 1);
    }
  }
  cout << ans << endl;
}
0