結果
問題 | No.1677 mæx |
ユーザー | 👑 Nachia |
提出日時 | 2021-09-10 21:44:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,604 bytes |
コンパイル時間 | 837 ms |
コンパイル使用メモリ | 79,472 KB |
実行使用メモリ | 814,152 KB |
最終ジャッジ日時 | 2024-06-11 23:09:32 |
合計ジャッジ時間 | 2,968 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <atcoder/modint> using namespace std; using i32 = int32_t; using u32 = uint32_t; using i64 = int64_t; using u64 = uint64_t; #define rep(i,n) for(int i=0; i<(n); i++) using m32 = atcoder::modint998244353; struct Exp{ m32 A[3] = {}; }; int mex(int a, int b){ static const int mat[3][3] = { {1,2,1},{2,0,0},{1,0,0} }; return mat[a][b]; } Exp operator+(Exp a, Exp b){ Exp res; rep(i,3) res.A[i] = a.A[i] + b.A[i]; return res; } Exp maxExp(Exp a, Exp b){ Exp res; rep(i,3) rep(j,3) res.A[max(i,j)] += a.A[i] * b.A[j]; return res; } Exp mexExp(Exp a, Exp b){ Exp res; rep(i,3) rep(j,3) res.A[mex(i,j)] += a.A[i] * b.A[j]; return res; } Exp getExp(string S, int& p){ if(S[p] == '?'){ p++; return Exp{ {1,1,1} }; } if(S[p] == '0'){ p++; return Exp{ {1,0,0} }; } if(S[p] == '1'){ p++; return Exp{ {0,1,0} }; } if(S[p] == '2'){ p++; return Exp{ {0,0,1} }; } if(S[p] == 'm'){ p++; // m char nx = S[p]; p++; // ? p++; // x p++; // ( Exp a = getExp(S,p); p++; // , Exp b = getExp(S,p); p++; // ) if(nx == '?') return mexExp(a,b) + maxExp(a,b); if(nx == 'e') return mexExp(a,b); if(nx == 'a') return maxExp(a,b); } exit(1); } int main(){ string S; cin >> S; int p = 0; auto res = getExp(S,p); int k; cin >> k; cout << res.A[k].val() << endl; return 0; } struct ios_do_not_sync { ios_do_not_sync() { ios::sync_with_stdio(false); cin.tie(nullptr); } } ios_do_not_sync_instance;