博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
模拟题 找出不能拼凑的最小数
阅读量:4921 次
发布时间:2019-06-11

本文共 1058 字,大约阅读时间需要 3 分钟。

A. An interesting game

Zhouzhou and Dazhongfeng are playing an interesting game. They have
some cards with numbers on them, and all the numbers are between zero and
nine. They can use these cards to make up different numbers. Now they want
to know the smallest number they cannot make up. Can you tell them?
The first line contains an integer T(T 100). The next T lines, each line
contains a string S(
jSj ≤ 100000), the string represents all the cards they have,
each character represents an card.
Output the smallest number they cannot makeup.
3
01234567
2301
1111222
8 4 0

#include 
#include
#include
using namespace std;int aa[11];int main(){ int num,j; string s; cin>>num; while(num--) { memset(aa,0,sizeof(aa)); cin>>s; for(int i=0;i
aa[i]) { min=aa[i]; j=i; } } if(!flag) { if(j!=0){ for(int i=0;i

转载于:https://www.cnblogs.com/LandingGuy/p/9280216.html

你可能感兴趣的文章
iOS开发UI篇章 15-项目中的常见文件
查看>>
潜在语义分析Latent semantic analysis note(LSA)原理及代码
查看>>
JSONObject与JSONArray的使用
查看>>
Android应用开发-小巫CSDN博客clientJsoup篇
查看>>
Junit使用教程(一)
查看>>
Java Utils工具类大全
查看>>
ASP.NET MVC 中IBaseDal接口的封装
查看>>
【博主的微博】
查看>>
微擎性能优化设置
查看>>
命令 上传项目到git中
查看>>
Android 自定义View
查看>>
electron-searchMovies
查看>>
解题报告:hdu 2073 无限的路
查看>>
让TextBlock文字变化的动画
查看>>
L1-005 考试座位号
查看>>
js进阶 10-1 JQuery是什么
查看>>
什么是字体锯齿和反锯齿
查看>>
棋子翻转
查看>>
零售企业如何把成本控制在最低以提高利润?
查看>>
python3之登陆
查看>>