結果
問題 | No.362 門松ナンバー |
ユーザー | firiexp |
提出日時 | 2019-12-25 20:44:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 3,000 ms |
コード長 | 2,682 bytes |
コンパイル時間 | 854 ms |
コンパイル使用メモリ | 104,788 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-04-27 03:02:31 |
合計ジャッジ時間 | 1,580 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <map> #include <set> #include <queue> #include <stack> #include <numeric> #include <bitset> #include <cmath> #include <limits> static const int MOD = 1000000007; using ll = long long; using u32 = uint32_t; using namespace std; template<class T> constexpr T INF = ::numeric_limits<T>::max() / 32 * 15 + 208; bool IsKadomatsu(int a, int b, int c){ if(a == b || b == c || c == a) return false; return max({a, b, c}) == b || min({a, b, c}) == b; } template <class T, class U> vector<T> make_v(U size, const T& init){ return vector<T>(static_cast<size_t>(size), init); } template<class... Ts, class U> auto make_v(U size, Ts... rest) { return vector<decltype(make_v(rest...))>(static_cast<size_t>(size), make_v(rest...)); } template<class T> void chmin(T &a, const T &b){ a = (a < b ? a : b); } template<class T> void chmax(T &a, const T &b){ a = (a > b ? a : b); } string solve(ll x){ auto dp1 = make_v(20, 10, 10, 0LL); // i+1桁の数で、かつ上の2桁がj, kである数 for (int i = 0; i < 10; ++i) { for (int j = 0; j < 10; ++j) { if(i != j) dp1[1][i][j] = 1; } } ll n = 0; for (int i = 2; i < 20; ++i) { for (int j = 0; j < 10; ++j) { for (int k = 0; k < 10; ++k) { if(!dp1[i-1][j][k]) continue; for (int l = 0; l < 10; ++l) { if(IsKadomatsu(l, j, k)){ dp1[i][l][j] += dp1[i-1][j][k]; } } } } ll s = 0; for (int j = 1; j < 10; ++j) { for (int k = 0; k < 10; ++k) { s += dp1[i][j][k]; } } if(s >= x){ n = i; break; } x -= s; } int a = 0, b = 0; string ans; for (int i = 1; i < 10; ++i) { for (int j = 0; j < 10; ++j) { if(dp1[n][i][j] < x) x -= dp1[n][i][j]; else { a = i, b = j; ans += to_string(i); ans += to_string(j); i = 10, j = 10; break; } } } for (int i = n - 1; i >= 1; --i) { for (int j = 0; j < 10; ++j) { if(IsKadomatsu(a, b, j)){ if(dp1[i][b][j] < x) x -= dp1[i][b][j]; else { a = b, b = j; ans += to_string(j); break; } } } } return ans; } int main() { int t; cin >> t; while(t--){ ll x; cin >> x; cout << solve(x) << "\n"; } return 0; }