E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
UVa340
UVA340
猜数字游戏的提示 Master-Mind Hints
你的任务是实现一个经典的“猜数字”游戏。给定答案序列和用户猜的序列,统计有多少数字位置正确(设为AA),有多少数字在两个序列中都出现过但位置不对(BB)。输入包含多组数据。每组输入第一行为序列长度nn,第二行是答案序列,接下来是若干行猜测序列。猜测序列全00时表示该组数据结束。n=0n=0时输入结束。对于每一组数据,输出的开头应有一行**“Gamex:”(没有双引号,x为当前组数据的编号,从1开始
zqhf123
·
2020-09-15 06:22
UVA题解
UVa340
Master-Mind Hints
Master-MindHintsMasterMindisagamefortwoplayers.Oneofthem,Designer,selectsasecretcode.Theother,Breaker,triestobreakit.Acodeisnomorethanarowofcoloreddots.Atthebeginningofagame,theplayersagreeupontheleng
江枭
·
2020-08-13 19:06
UVa
uva340
- Master-Mind Hints
MasterMindisagamefortwoplayers.Oneofthem,Designer,selectsasecretcode.Theother,Breaker,triestobreakit.Acodeisnomorethanarowofcoloreddots.Atthebeginningofagame,theplayersagreeuponthelengthNthatacodemust
滑头鬼之亨
·
2020-08-13 11:49
杂类
uva340
Master-Mind Hints
题目:输入N个数字。然后再输入任意组N个数字。判断两个数字:1位置完全一致判断完1后2:位置不一致但是在两组中都存在注意:1我的想法主要是判断完后删除对应数字,听了同学思路发现根本不需要,因为数字范围是1~9,所以判断完置为0即可2在判断第二类数字,查找时,找到后及时break出for循环,否则会重复计算#include#include#include#include#include#includ
Harder_LZA
·
2020-08-13 10:14
uva
uva 340
今天做了
uva340
,后续会继续坚持刷题的。/*THEPROGRAMISMAD
菜鸟辉的奋斗史
·
2020-08-01 00:44
字符数组
UVA340
Master-Mind Hints【数组】
Master-MindHintsUVA-340题目传送门题目大意:先输入一个整数n,表示有n个数字,下面第一行代表正确答案,其下每一行代表用户猜的答案,需统计其有多少数字位置正确(A),有多少数字在两个字符串中都出现过但位置不正确(B),输入一全为0结束。AC代码:#include#include#include#include#include#include#include#include#in
无边星空
·
2018-11-04 09:21
紫书——数组与字符串(例题)
步于C++
算法竞赛入门经典(紫书)
uva 的 3 道水题
uva340
猜数字游戏。给你一个源序列(由数字0~9组成),再给你多个目标序列。让你统计两个数A和B,A是在源序列和目的序列里都出现了且位置正确的,B是在两个序列中都出现了,但是位置不正确的。
Triose_Stream
·
2016-04-14 11:00
《算法竞赛入门经典》习题及反思
数组Master-MindHints,
Uva340
题目:给定答案序列和用户猜的序列,统计有多少数字对应正确(A),有多少数字在两个序列都出现过但位置不对。输入包括多组数据。
qq_34202958
·
2016-03-19 14:00
《算法竞赛入门经典》习题及反思 -<2>
数组Master-MindHints,
Uva340
题目:给定答案序列和用户猜的序列,统计有多少数字对应正确(A),有多少数字在两个序列都出现过但位置不对。输入包括多组数据。
Wasdns
·
2016-03-09 11:00
UVa340
- Master-Mind Hints
题目地址:点击打开链接 C++代码: #include<iostream> #include<cstring> using namespace std; const int maxsize=2000; int main() { int a[maxsize],b[maxsize],flag_a[maxsize],flag_b[maxsize]
·
2015-11-13 15:45
master
uva340
数字匹配检索问题
这道题目大意是:给定一个secret code,然后输入guess code,让你编程给出提示,提示的格式是(i,j),其中i表示strong match的个数,j表示weak match的个数。所谓strong&weak match就有一点像猜数字游戏了,strong match表示数字正确且位置也正确;weak match表示数字正确但位置不正确。要求每输入一个guess code就要
·
2015-11-13 00:25
uva
UVA340
- Master-Mind Hints
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=276 实在没读懂题意 搜的意思 真佩服UVA的表达能力 输入n,表示每个代码的长度为n;输入有多组数据,当n=0时表示结束;而在每组中,以最后输n个0结束。对于每组数据,第一行编码
·
2015-11-11 10:03
master
理解题意后的
UVa340
之前理解题意错误,应该是每一次game,只输入一组答案序列,输入多组测试序列,而之前的错误理解是每一次输入都对应一组答案序列和一组测试序列,下面是理解题意后的代码,但是还是WA,待修改 #include<stdio.h> #define maxn 1010 int main() { int num,a[maxn],i,j,b[maxn]; int sum=
·
2015-11-01 15:52
uva
还是
UVa340
#include<stdio.h> #define maxn 1010 int main() { int num,a[maxn],i,j,b[maxn]; int sum=0; while(scanf("%d",&num)==1&&num) { ++sum; p
·
2015-11-01 15:52
uva
UVa340
(Master-Mind Hints)未完成
#include<stdio.h> int main() { int num,a[100],i,j,b[100]; while(scanf("%d",&num)!=EOF) { int s1=0,s2=0; for(i=0;i<num;i++) { scanf("%d",&a[i])
·
2015-11-01 15:51
master
UVa340
未完成
#include<stdio.h> #define maxn 1010 int main() { int num,a[maxn],i,j,b[maxn],case=0; while(scanf("%d",&num)!=EOF&&num) { printf("Game %d:\n&
·
2015-11-01 15:51
uva
UVa340
Master-Mind Hints
#include <stdio.h>#include <string.h>#define MIN(a,b) (((a) < (b)) ? (a) : (b))int main(){ int code[1000]; int guess[1000]; int C1[
·
2015-06-20 20:00
master
uva340
数字匹配检索问题
这道题目大意是:给定一个secretcode,然后输入guesscode,让你编程给出提示,提示的格式是(i,j),其中i表示strongmatch的个数,j表示weakmatch的个数。所谓strong&weakmatch就有一点像猜数字游戏了,strongmatch表示数字正确且位置也正确;weakmatch表示数字正确但位置不正确。要求每输入一个guesscode就要输出相应的hint。我的
u011613729
·
2013-10-12 10:00
C++
搜索
ACM
uva
uva340
- Master-Mind Hints
MasterMindisagamefortwoplayers.Oneofthem,Designer,selectsasecretcode.Theother,Breaker,triestobreakit.Acodeisnomorethanarowofcoloreddots.Atthebeginningofagame,theplayersagreeuponthelengthNthatacodemust
Frankiller
·
2012-06-09 10:00
input
each
output
pair
colors
Numbers
上一页
1
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他