A10700 | Interactive Bulls and Cows (Easy)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This problem is a little bit unusual. Here you are to implement an interaction with a testing system. That means that you can make queries and get responses in the online mode. Please be sure to use the stream flushing operation after each query's output in order not to leave part of your output in some buffer. For example, in C++ you've got to use the fflush(stdout) function, in Java — call System.out.flush(), and in Pascal — flush(output).
Bulls and Cows (also known as Cows and Bulls or Pigs and Bulls or Bulls and Cleots) is an old code-breaking paper and pencil game for two players, predating the similar commercially marketed board game Mastermind.
On a sheet of paper, the first player thinks a secret string. This string consists only of digits and has the length $4$ . The digits in the string must be all different, no two or more equal digits are allowed.
Then the second player tries to guess his opponent's string. For every guess the first player gives the number of matches. If the matching digits are on their right positions, they are "bulls", if on different positions, they are "cows". Thus a response is a pair of numbers — the number of "bulls" and the number of "cows". A try can contain equal digits.
More formally, let's the secret string is $s$ and the second player are trying to guess it with a string $x$ . The number of "bulls" is a number of such positions $i$ ( $1<=i<=4$ ) where $s[i]=x[i]$ . The number of "cows" is a number of such digits $c$ that $s$ contains $c$ in the position $i$ (i.e. $s[i]=c$ ), $x$ contains $c$ , but $x[i]≠c$ .
For example, the secret string is "0427", the opponent's try is "0724", then the answer is $2$ bulls and $2$ cows (the bulls are "0" and "2", the cows are "4" and "7"). If the secret string is "0123", the opponent's try is "0330", then the answer is $1$ bull and $1$ cow.
In this problem you are to guess the string $s$ that the system has chosen. You only know that the chosen string consists of $4$ distinct digits.
You can make queries to the testing system, each query is the output of a single $4$ -digit string. The answer to the query is the number of bulls and number of cows. If the system's response equals "4 0", that means the interaction with your problem is over and the program must terminate. That is possible for two reasons — the program either guessed the number $x$ or made an invalid action (for example, printed letters instead of digits).
Your program is allowed to do at most $50$ queries.
You can hack solutions of other participants providing a 4-digit string containing distinct digits — the secret string.
Bulls and Cows (also known as Cows and Bulls or Pigs and Bulls or Bulls and Cleots) is an old code-breaking paper and pencil game for two players, predating the similar commercially marketed board game Mastermind.
On a sheet of paper, the first player thinks a secret string. This string consists only of digits and has the length $4$ . The digits in the string must be all different, no two or more equal digits are allowed.
Then the second player tries to guess his opponent's string. For every guess the first player gives the number of matches. If the matching digits are on their right positions, they are "bulls", if on different positions, they are "cows". Thus a response is a pair of numbers — the number of "bulls" and the number of "cows". A try can contain equal digits.
More formally, let's the secret string is $s$ and the second player are trying to guess it with a string $x$ . The number of "bulls" is a number of such positions $i$ ( $1<=i<=4$ ) where $s[i]=x[i]$ . The number of "cows" is a number of such digits $c$ that $s$ contains $c$ in the position $i$ (i.e. $s[i]=c$ ), $x$ contains $c$ , but $x[i]≠c$ .
For example, the secret string is "0427", the opponent's try is "0724", then the answer is $2$ bulls and $2$ cows (the bulls are "0" and "2", the cows are "4" and "7"). If the secret string is "0123", the opponent's try is "0330", then the answer is $1$ bull and $1$ cow.
In this problem you are to guess the string $s$ that the system has chosen. You only know that the chosen string consists of $4$ distinct digits.
You can make queries to the testing system, each query is the output of a single $4$ -digit string. The answer to the query is the number of bulls and number of cows. If the system's response equals "4 0", that means the interaction with your problem is over and the program must terminate. That is possible for two reasons — the program either guessed the number $x$ or made an invalid action (for example, printed letters instead of digits).
Your program is allowed to do at most $50$ queries.
You can hack solutions of other participants providing a 4-digit string containing distinct digits — the secret string.
输入格式
To read answers to the queries, the program must use the standard input.
The program will receive pairs of non-negative integers in the input, one pair per line. The first number in a pair is a number of bulls and the second one is a number of cows of the string $s$ and the string $x_{i}$ printed by your program. If the system response equals "4 0", then your solution should terminate.
The testing system will let your program read the $i$ -th pair of integers from the input only after your program displays the corresponding system query in the output: prints value $x_{i}$ in a single line and executes operation flush.
The program will receive pairs of non-negative integers in the input, one pair per line. The first number in a pair is a number of bulls and the second one is a number of cows of the string $s$ and the string $x_{i}$ printed by your program. If the system response equals "4 0", then your solution should terminate.
The testing system will let your program read the $i$ -th pair of integers from the input only after your program displays the corresponding system query in the output: prints value $x_{i}$ in a single line and executes operation flush.
输出格式
The program must use the standard output to print queries.
Your program must output requests — $4$ -digit strings $x_{1},x_{2},...$ , one per line. After the output of each line the program must execute flush operation. The program should read the answer to the query from the standard input.
Your program is allowed to do at most $50$ queries.
Your program must output requests — $4$ -digit strings $x_{1},x_{2},...$ , one per line. After the output of each line the program must execute flush operation. The program should read the answer to the query from the standard input.
Your program is allowed to do at most $50$ queries.
输入输出样例
输入 #1
0 1 2 0 1 1 0 4 2 1 4 0
输出 #1
8000 0179 3159 3210 0112 0123
The secret string $s$ in the example is "0123".
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted