結果
問題 | No.362 門松ナンバー |
ユーザー | h_noson |
提出日時 | 2016-05-24 22:02:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 39 ms / 3,000 ms |
コード長 | 1,520 bytes |
コンパイル時間 | 1,433 ms |
コンパイル使用メモリ | 69,204 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-07 06:49:19 |
合計ジャッジ時間 | 2,012 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,816 KB |
testcase_01 | AC | 10 ms
6,816 KB |
testcase_02 | AC | 10 ms
6,816 KB |
testcase_03 | AC | 6 ms
6,824 KB |
testcase_04 | AC | 4 ms
6,816 KB |
testcase_05 | AC | 14 ms
6,816 KB |
testcase_06 | AC | 26 ms
6,820 KB |
testcase_07 | AC | 15 ms
6,816 KB |
testcase_08 | AC | 19 ms
6,820 KB |
testcase_09 | AC | 30 ms
6,820 KB |
testcase_10 | AC | 38 ms
6,816 KB |
testcase_11 | AC | 37 ms
6,816 KB |
testcase_12 | AC | 37 ms
6,820 KB |
testcase_13 | AC | 38 ms
6,816 KB |
testcase_14 | AC | 37 ms
6,816 KB |
testcase_15 | AC | 37 ms
6,816 KB |
testcase_16 | AC | 36 ms
6,820 KB |
testcase_17 | AC | 33 ms
6,820 KB |
testcase_18 | AC | 39 ms
6,816 KB |
testcase_19 | AC | 21 ms
6,820 KB |
testcase_20 | AC | 39 ms
6,816 KB |
testcase_21 | AC | 6 ms
6,820 KB |
ソースコード
#include <iostream> #include <vector> #include <map> #include <algorithm> using namespace std; #define debug cout << "debug" << endl; exit(1); #define REP(i,s,e) for (i = s; i <= e; i++) #define rep(i,n) REP (i,0,(int)(n)-1) #define RREP(i,s,e) for (i = s; i >= e; i--) #define rrep(i,n) RREP (i,(int)(n)-1,0) #define INF (int)1e8 #define MOD (int)1e9+7 typedef long long ll; bool is_kadomatsu(int a, int b, int c) { return a != c && (b < min(a,c) || b > max(a,c)); } ll count(ll x) { ll dp[2][15][11][11] {}; int i, a, b, c; ll ret; vector<int> xs; while (x > 0) { xs.push_back(x%10); x /= 10; } reverse(xs.begin(),xs.end()); dp[0][0][10][10] = 1; rep (i,xs.size()) rep (a,11) rep (b,11) rep (c,10) { if (is_kadomatsu(a,b,c) || a == 10 || b == 10) { if (c == xs[i]) dp[0][i+1][b][(b == 10 && c == 0) ? 10 : c] += dp[0][i][a][b]; dp[1][i+1][b][(b == 10 && c == 0) ? 10 : c] += dp[1][i][a][b] + (c < xs[i] ? dp[0][i][a][b] : 0); } } ret = 0; rep (i,2) rep (a,10) rep (b,10) ret += dp[i][xs.size()][a][b]; return ret; } int main(void) { int t; cin >> t; while (t--) { ll k, l, r; cin >> k; k += count(99); l = 0; r = 1e14; while (l+1 < r) { ll m; m = (l+r)/2; if (count(m) < k) l = m; else r = m; } cout << r << endl; } return 0; }