A. Guess a number!(cf)

本文介绍了一款名为“Guess a number!”的电视节目背后的逻辑。参与者通过提问来猜测主持人所想的整数,问题包括数字的大小比较。文章详细解释了如何根据一系列问题及其答案找出符合条件的数字,若无解则输出'Impossible'。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

A TV show called "Guess a number!" is gathering popularity. The whole Berland, the old and the young, are watching the show.

The rules are simple. The host thinks of an integer y and the participants guess it by asking questions to the host. There are four types of acceptable questions:

  • Is it true that y is strictly larger than number x?
  • Is it true that y is strictly smaller than number x?
  • Is it true that y is larger than or equal to number x?
  • Is it true that y is smaller than or equal to number x?

On each question the host answers truthfully, "yes" or "no".

Given the sequence of questions and answers, find any integer value of y that meets the criteria of all answers. If there isn't such value, print "Impossible".

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 10000) — the number of questions (and answers). Next n lines each contain one question and one answer to it. The format of each line is like that: "sign x answer", where the sign is:

  • ">" (for the first type queries),
  • "<" (for the second type queries),
  • ">=" (for the third type queries),
  • "<=" (for the fourth type queries).

All values of x are integer and meet the inequation  - 109 ≤ x ≤ 109. The answer is an English letter "Y" (for "yes") or "N" (for "no").

Consequtive elements in lines are separated by a single space.

Output

Print any of such integers y, that the answers to all the queries are correct. The printed number y must meet the inequation  - 2·109 ≤ y ≤ 2·109. If there are many answers, print any of them. If such value doesn't exist, print word "Impossible" (without the quotes).

Sample test(s)
input
4
>= 1 Y
< 3 N
<= -3 N
> 55 N
output
17
input
2
> 100 Y
< -100 Y
output
Impossible
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
#define M 0x3f3f3f3f
int main()
{
    int n;
    cin>>n;
    int p=M,q=-M;
    string s1,s2;
    int num;
    while(n--)
    {
        cin>>s1>>num>>s2;
        if(s1==">="&&s2=="Y")
        {
            if(q<num)
                q=num;
        }
        else if(s1==">"&&s2=="Y")
        {
            if(q<=num)
                q=num+1;
        }
        else if(s1=="<="&&s2=="Y")
        {
            if(p>num)
                p=num;
        }
        else if(s1=="<"&&s2=="Y")
        {
            if(p>=num)
                p=num-1;
        }
        else if(s1==">="&&s2=="N")
        {
            if(p>=num)
                p=num-1;
        }
        else if(s1==">"&&s2=="N")
        {
            if(p>num)
                p=num;
        }
        else if(s1=="<="&&s2=="N")
        {
            if(q<=num)
                q=num+1;
        }
        else if(s1=="<"&&s2=="N")
        {
            if(q<num)
                q=num;
        }
    }
    if(p<q)
        cout<<"Impossible"<<endl;
    else
        cout<<q<<endl;

return 0;
}


2025-06-12 10:19:35.256 ERROR 19812 --- [nio-8080-exec-1] c.e.a.exception.GlobalExceptionHandler : 服务器异常 org.springframework.jdbc.BadSqlGrammarException: ### Error querying database. Cause: org.postgresql.util.PSQLException: ERROR: column "fisc_div_code" does not exist Position: 1364 Where: referenced column: fiscaldivcode ### The error may exist in com/example/ayfinanceadmin/mapper/base/sysAdmAgencyMapper.java (best guess) ### The error may involve defaultParameterMap ### The error occurred while setting parameters ### SQL: SELECT chr_id,set_year,chr_code,disp_code,chr_name,level_num,is_leaf,enabled,create_date,create_user,latest_op_date,is_deleted,latest_op_user,chr_code1,chr_code2,chr_code3,chr_code4,chr_code5,rg_code,main_code,union_code,en_property,sort_property,en_charge,finance_charge,clerk,district_number,telephone,extension_number,address,manage_level,relation,parent_id,chr_id1,chr_id2,chr_id3,chr_id4,chr_id5,chr_code6,chr_code7,chr_code8,chr_code9,chr_id6,chr_id7,chr_id8,chr_id9,is_reform,start_date,end_date,secretdegree,isbudget,luload_mod,en_cf_mod,reserve_amt,reserve_start,reserve_used,mb_id,div_kind,div_fmkind,is_legalinc,en_type,editor,quic_code,is_gztf,trun_in_acct AS trInAcct,fina_level,is_self,co_type_code,post_code,url,enabled_ebank_date AS enabledDate,ebank_enterprise_no AS ebEnterpriseNo,enabled_ebank AS enabledBank,old_chr_id,hirer_id,co_fullname,last_ver,remark,co_name1,co_name2,co_name3,org_code,co_fzr_tel,cw_fzr_tel,acc_book_type_name,is_financial,is_budg AS isBu,is_acc,is_self2,budg_co_code AS buCoCode,budg_co_name AS buCoName,final_co_code,final_co_name,budg_level AS buLevel,fi_co_code,fi_co_dept_code,bm_co_code,is_enable,xxzx_charge,xxzx_charge_tel AS xxChargeTel,chr_fullname,parent_code,web_url,dist_code,agency_code,dist_name,ass_code,area_zone,currency_code,leader_charge,short_name,src_agency_code,fisc_div_id AS fiscalDivId,tutype,fisc_div_code AS fiscalDivCode FROM sys_adm_agency WHERE (chr_code = ? AND set_year = ? AND
06-13
src按照你给的修改后,test进行如下修改// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13; import "forge-std/Test.sol"; import "forge-std/console.sol"; import "../src/GuessNewNumber.sol"; contract GuessNewNumberTest is Test { GuessNewNumber public guessNewNumber; ExploitContract public exploitContract; function setUp() public { // Deploy contracts guessNewNumber = (new GuessNewNumber){value: 1 ether}(); exploitContract = new ExploitContract(); } function testNumber(uint256 blockNumber, uint256 blockTimestamp) public { // Prevent zero inputs vm.assume(blockNumber != 0); vm.assume(blockTimestamp != 0); vm.assume(blockTimestamp > 0 && blockTimestamp < type(uint64).max); vm.assume(blockNumber > 0 && blockNumber < block.number + 256); // Set block number and timestamp vm.roll(blockNumber); vm.warp(blockTimestamp); // Place your solution here assertTrue(guessNewNumber.isComplete(), "Challenge not completed"); exploitContract.Exploit(); } function _checkSolved(uint8 _newNumber) internal { bool success = guessNewNumber.guess{value: 1 ether}(_newNumber); assertTrue(guessNewNumber.guess{value: 1 ether}(_newNumber), "Wrong Number"); assertTrue(guessNewNumber.isComplete(), "Balance is supposed to be zero"); } receive() external payable {} }报错Compiler run failed: Error (6160): Wrong argument count for function call: 0 arguments given but expected 1. --> test/GuessNewNumber.t.sol:15:27: | 15 | exploitContract = new ExploitContract(); | ^^^^^^^^^^^^^^^^^^^^^ Error: Compilation failed
最新发布
07-12
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值