摘要:
A...随意搞B.题意:从1~n(n<=1e9)中统计最多由两种不同数字组成的数的个数. 解法:枚举两个数字,然后考虑每一位的情况,用二进制的思想..最后统计结果B 1 #include<iostream> 2 #include<cstring> 3 #include<algorithm> 4 #include<set> 5 using namespace std; 6 typedef long long ll; 7 int dig(ll n){ 8 int ans=0; 9 while(n>0){10 n/=10;11 ans++; 阅读全文