結果
問題 | No.2575 Almost Increasing Sequence |
ユーザー | ochiaigawa |
提出日時 | 2023-12-04 09:40:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,003 bytes |
コンパイル時間 | 2,531 ms |
コンパイル使用メモリ | 217,564 KB |
実行使用メモリ | 6,676 KB |
スコア | 0 |
最終ジャッジ日時 | 2023-12-04 09:40:50 |
合計ジャッジ時間 | 37,541 ms |
ジャッジサーバーID (参考情報) |
judge14 / judge12 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#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() << ' '; } cout << '\n'; return 0; }