卡片
1 #include <iostream> 2 #include <cmath> 3 #include <algorithm> 4 #include <iomanip> 5 using namespace std; 6 int cnt[10]={0}; 7 int main(){ 8 for(int i=0;i<=9;i++) cnt[i]=2021; 9 for(int i=1;;i++){ 10 int t=i; 11 while(t){ 12 if(cnt[t%10]==0) { 13 cout<<i-1; 14 return 0; 15 }; 16 cnt[t%10]--; 17 t/=10; 18 } 19 } 20 return 0; 21 }
就是枚举
标签:std,10,int,蓝桥,12021,include From: https://www.cnblogs.com/daitu66/p/17017050.html