摘要:
E38 数位DP 度的数量_哔哩哔哩_bilibili #include<bits/stdc++.h> using namespace std; const int N=34; int a[N]; //把B进制数的每一位抠出存入数组 int f[N][N]; //f[i][j]表示在i个位置上,放置 阅读全文
摘要:
E36 数位DP 数字游戏_哔哩哔哩_bilibili 信息学奥赛一本通(C++版)在线评测系统 #include<bits/stdc++.h> using namespace std; const int N=12; int a[N]; //把整数的每一位数字抠出来,存入数组 int f[N][N 阅读全文