K-进制数-题解(C++代码)数位dp 摘要:```cpp #include using namespace std; int dp[100][2]; int k,N; long long dfs(int pos,int limit) …… 题解列表 2020年04月17日 0 点赞 0 评论 396 浏览 评分:9.9
K-进制数(C语言极简) 摘要:怎么说呢,写得十分取巧,刚好就把规律给凑出来了。后面我有看到一位大佬写的递归思路,很像。参考代码:#include<stdio.h>int main(){ int N,K; scanf("%d%d",…… 题解列表 2022年03月21日 0 点赞 0 评论 138 浏览 评分:9.9
使用排列组合(插入0) 摘要:解题思路:使用排列组合注意事项:参考代码:#include<iostream>#include<math.h>using namespace std;int jiech(int n){ int …… 题解列表 2022年01月20日 0 点赞 0 评论 117 浏览 评分:9.9
K-进制数-题解(Python代码) 摘要:#### Python递归解决 当位数为n时,满足条件的数有两种情况: 1. 第一位必不为0,且第二位也不为0,这种情况只要`(k-1)*[n-1位数时满足的个数]` 2. 第一位不为0,且…… 题解列表 2020年02月26日 0 点赞 2 评论 947 浏览 评分:9.9