結果

問題 No.2374 ASKT Subsequences
ユーザー KoseTKoseT
提出日時 2023-07-07 23:19:26
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 2,420 ms
コンパイル使用メモリ 212,252 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-21 19:44:25
合計ジャッジ時間 5,285 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  vector<int> a(n);
  for (int i=0;i<n;++i) cin >> a[i];
  long ans {};
  for (int i=0;i<n;++i) { // a_1
    map<int, pair<long, long>> mp;
    for (int j=n-1;i<j;--j) { // a_2
      int k = a[j] - a[i] - 10; // 10 + k
      if (k == 0) {
        for (auto& e : mp) e.second.second += e.second.first;
      } else if (k > 0) {
        ans += mp[a[i]+k+11].second;
      }
      ++mp[a[j]].first; // a_4
    }
  }
  cout << ans << '\n';
}
0