結果
問題 | No.362 門松ナンバー |
ユーザー | legendcn666 |
提出日時 | 2024-08-18 17:15:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 3,000 ms |
コード長 | 1,676 bytes |
コンパイル時間 | 1,732 ms |
コンパイル使用メモリ | 167,304 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-18 17:15:54 |
合計ジャッジ時間 | 3,016 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 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,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
ソースコード
# include <bits/stdc++.h> using namespace std; typedef long long ll; # define int long long # define lc u << 1 # define rc u << 1 | 1 # define fi first # define se second const int N = 40; int a[N], tot; int dp[20][10][10][3][2]; int dfs (int pos, int befbef, int bef, int st, bool lim) { if (!pos) return 1; if (!lim && dp[pos][befbef][bef][st][lim] != -1) return dp[pos][befbef][bef][st][lim]; int ans = 0; int up = lim ? a[pos] : 9; for (int i = 0; i <= up; i ++ ) { if (!st) { if (!bef) ans += dfs (pos - 1, bef, i, 0, lim && (i == up)); else if (i > bef) ans += dfs (pos - 1, bef, i, 1, lim && (i == up)); else if (i < bef) ans += dfs (pos - 1, bef, i, 2, lim && (i == up)); } else if (st == 1) { if (i < bef && befbef != i) ans += dfs (pos - 1, bef, i, 2, lim && (i == up)); } else if (st == 2) { if (i > bef && befbef != i) ans += dfs (pos - 1, bef, i, 1, lim && (i == up)); } } if (!lim) dp[pos][befbef][bef][st][lim] = ans; return ans; } int calc (int x) { tot = 0; while (x) { a[ ++ tot] = x % 10; x /= 10; } return dfs (tot, 0, 0, 0, 1); } signed main () { // freopen ("zigzag.in", "r", stdin); freopen ("zigzag.out", "w", stdout); int T; scanf ("%lld", &T); memset (dp, -1, sizeof dp); while (T -- ) { int x; scanf ("%lld", &x); int l = 0, r = 37294859064824, ans = 0; while (l <= r) { int mid = l + r >> 1; if (calc (mid) - 91 >= x) r = mid - 1, ans = mid; else l = mid + 1; } printf ("%lld\n", ans); } return 0; }