結果
問題 | No.2455 Numbers Dictionary |
ユーザー | milanis48663220 |
提出日時 | 2023-09-01 23:14:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 431 ms / 2,000 ms |
コード長 | 3,028 bytes |
コンパイル時間 | 1,280 ms |
コンパイル使用メモリ | 129,848 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-11 05:20:33 |
合計ジャッジ時間 | 9,312 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 355 ms
5,376 KB |
testcase_03 | AC | 364 ms
5,376 KB |
testcase_04 | AC | 358 ms
5,376 KB |
testcase_05 | AC | 344 ms
5,376 KB |
testcase_06 | AC | 371 ms
5,376 KB |
testcase_07 | AC | 363 ms
5,376 KB |
testcase_08 | AC | 120 ms
5,376 KB |
testcase_09 | AC | 367 ms
5,376 KB |
testcase_10 | AC | 357 ms
5,376 KB |
testcase_11 | AC | 377 ms
5,376 KB |
testcase_12 | AC | 348 ms
5,376 KB |
testcase_13 | AC | 368 ms
5,376 KB |
testcase_14 | AC | 357 ms
5,376 KB |
testcase_15 | AC | 371 ms
5,376 KB |
testcase_16 | AC | 104 ms
5,376 KB |
testcase_17 | AC | 358 ms
5,376 KB |
testcase_18 | AC | 30 ms
5,376 KB |
testcase_19 | AC | 32 ms
5,376 KB |
testcase_20 | AC | 368 ms
5,376 KB |
testcase_21 | AC | 431 ms
5,376 KB |
testcase_22 | AC | 406 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } ll sub_solve(vector<int> mx, vector<int> target){ int len = mx.size(); auto dp = vec3d(len, 2, 2, 0ll); for(int x = 1; x < mx[0]; x++){ if(x < target[0]){ dp[0][0][0]++; }else if(x == target[0]){ dp[0][0][1]++; } } if(mx[0] < target[0]){ dp[0][1][0]++; }else if(mx[0] == target[0]){ dp[0][1][1]++; } // cout << "====" << endl; // debug_value(mx[0]) // print_vector(dp[0][0]); // print_vector(dp[0][1]); int target_len = target.size(); for(int i = 1; i < len; i++){ for(int j = 0; j <= 1; j++){ for(int k = 0; k <= 1; k++){ int t = target.size() > i ? target[i] : -1; for(int x = 0; x <= 9; x++){ // 大きくなってしまう if(k == 1 && x > t) continue; if(j == 1 && x > mx[i]) continue; int jj = (j == 0 || x < mx[i]) ? 0 : 1; int kk = (k == 0 || x < t) ? 0 : 1; dp[i][jj][kk] += dp[i-1][j][k]; } } } } ll ans = dp[len-1][0][0]+dp[len-1][1][0]; if(mx.size() < target.size()){ ans += dp[len-1][0][1]+dp[len-1][1][1]; } // debug_value(ans) return ans; } void solve(){ ll n, k; cin >> n >> k; string ns = to_string(n); string ks = to_string(k); vector<int> nv, kv; for(char c: ns) nv.push_back(c-'0'); for(char c: ks) kv.push_back(c-'0'); ll ans = 0; for(int len = 1; len < ns.size(); len++){ ans += sub_solve(vector(len, 9), kv); } ans += sub_solve(nv, kv); ans++; cout << ans << endl; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int t; cin >> t; while(t--) solve(); }