結果

問題 No.2956 Substitute with Average
ユーザー 👑 emthrmemthrm
提出日時 2024-11-08 22:09:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,066 ms / 3,000 ms
コード長 1,895 bytes
コンパイル時間 3,398 ms
コンパイル使用メモリ 259,604 KB
実行使用メモリ 151,424 KB
最終ジャッジ日時 2024-11-08 22:10:43
合計ジャッジ時間 39,109 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1,936 ms
135,680 KB
testcase_11 AC 2,007 ms
134,788 KB
testcase_12 AC 2,006 ms
135,424 KB
testcase_13 AC 1,940 ms
135,808 KB
testcase_14 AC 1,933 ms
134,656 KB
testcase_15 AC 2,014 ms
135,424 KB
testcase_16 AC 2,010 ms
135,680 KB
testcase_17 AC 1,923 ms
134,912 KB
testcase_18 AC 1,759 ms
151,424 KB
testcase_19 AC 1,948 ms
140,544 KB
testcase_20 AC 1,829 ms
143,492 KB
testcase_21 AC 1,815 ms
137,472 KB
testcase_22 AC 1,718 ms
151,272 KB
testcase_23 AC 1,696 ms
151,168 KB
testcase_24 AC 2,003 ms
139,428 KB
testcase_25 AC 1,991 ms
139,392 KB
testcase_26 AC 2,066 ms
139,264 KB
testcase_27 AC 1,998 ms
139,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 998244353;
// constexpr int MOD = 1000000007;
constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1};
constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1};
constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U>
inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U>
inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

int main() {
  constexpr int A = 30;
  int n; cin >> n;
  vector<int> a(n);
  for (int& a_i : a) cin >> a_i;
  ll ans = n * (n - 1LL) / 2 + 1;
  {
    array<vector<int>, A + 1> v{};
    FOR(num, 1, A + 1) {
      v[num].assign(n + 1, 0);
      REP(i, n) v[num][i + 1] = v[num][i] + a[i] - num;
    }
    array<map<int, int>, A + 1> cnt{};
    FOR(num, 1, A + 1) {
      FOR(i, 1, n + 1) ++cnt[num][v[num][i]];
    }
    REP(i, n) {
      FOR(num, 1, A + 1) --cnt[num][v[num][i + 1]];
      ans -= cnt[a[i]][v[a[i]][i + 1]];
    }
  }
  ranges::reverse(a);
  {
    array<vector<int>, A + 1> v{};
    FOR(num, 1, A + 1) {
      v[num].assign(n + 1, 0);
      REP(i, n) v[num][i + 1] = v[num][i] + a[i] - num;
    }
    array<map<int, int>, A + 1> cnt{};
    FOR(num, 1, A + 1) {
      FOR(i, 1, n + 1) {
        if (a[i - 1] != num) ++cnt[num][v[num][i]];
      }
    }
    REP(i, n) {
      FOR(num, 1, A + 1) {
        if (a[i] != num) --cnt[num][v[num][i + 1]];
      }
      ans -= cnt[a[i]][v[a[i]][i + 1]];
    }
  }
  cout << ans << '\n';
  return 0;
}
0