結果

問題 No.2575 Almost Increasing Sequence
ユーザー ochiaigawaochiaigawa
提出日時 2023-12-04 09:46:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,606 ms / 10,000 ms
コード長 1,038 bytes
コンパイル時間 2,694 ms
コンパイル使用メモリ 217,508 KB
実行使用メモリ 6,676 KB
スコア 200
最終ジャッジ日時 2023-12-04 09:47:13
合計ジャッジ時間 37,139 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,489 ms
6,676 KB
testcase_01 AC 1,583 ms
6,676 KB
testcase_02 AC 1,578 ms
6,676 KB
testcase_03 AC 1,574 ms
6,676 KB
testcase_04 AC 1,574 ms
6,676 KB
testcase_05 AC 1,606 ms
6,676 KB
testcase_06 AC 1,573 ms
6,676 KB
testcase_07 AC 1,574 ms
6,676 KB
testcase_08 AC 1,572 ms
6,676 KB
testcase_09 AC 1,598 ms
6,676 KB
testcase_10 AC 1,575 ms
6,676 KB
testcase_11 AC 1,574 ms
6,676 KB
testcase_12 AC 1,578 ms
6,676 KB
testcase_13 AC 1,583 ms
6,676 KB
testcase_14 AC 1,572 ms
6,676 KB
testcase_15 AC 1,557 ms
6,676 KB
testcase_16 AC 1,562 ms
6,676 KB
testcase_17 AC 1,571 ms
6,676 KB
testcase_18 AC 1,562 ms
6,676 KB
testcase_19 AC 1,569 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
#include <atcoder/segtree>
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
using namespace std;
using mint = atcoder::modint998244353;
int op(int a, int b) {
  return max(a, b);
}
int e() {
  return 0;
}
int main() {
  cin.tie(0); cout.tie(0);
  ios::sync_with_stdio(false);
  int K;
  cin >> K;
  cout << 10 << '\n';
  for(int N = 1; N <= 10; N++) {
    vector<int> p(N);
    for(int i = 0; i < N; i++) {
      p[i] = i;
    }
    mint ans = 0;
    do {
      atcoder::segtree<int, op, e> seg1(N);
      for(int i = 0; i < N; i++) {
        seg1.set(p[i], seg1.prod(p[i], N) + 1);
      }
      if(seg1.all_prod() == 3) {
        atcoder::segtree<int, op, e> seg2(N);
        for(int i = 0; i < N; i++) {
          seg2.set(p[i], seg2.prod(0, p[i]) + 1);
        }
        ans += mint(seg2.all_prod()).pow(K);
      }
    } while(next_permutation(p.begin(), p.end()));
    cout << ans.val();
    if(N < 10) {
      cout << ' ';
    }
  }
  cout << '\n';
  return 0;
}
0