CF1286C2.Madhouse (Hard version)

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

This problem is different with easy version only by constraints on total answers length

It is an interactive problem

Venya joined a tour to the madhouse, in which orderlies play with patients the following game. Orderlies pick a string ss of length nn , consisting only of lowercase English letters. The player can ask two types of queries:

  • ? l r – ask to list all substrings of s[l..r]s[l..r] . Substrings will be returned in random order, and in every substring, all characters will be randomly shuffled.
  • ! s – guess the string picked by the orderlies. This query can be asked exactly once, after that the game will finish. If the string is guessed correctly, the player wins, otherwise he loses.

The player can ask no more than 33 queries of the first type.

To make it easier for the orderlies, there is an additional limitation: the total number of returned substrings in all queries of the first type must not exceed 0.777(n+1)2\left\lceil 0.777(n+1)^2 \right\rceil ( x\lceil x \rceil is xx rounded up).

Venya asked you to write a program, which will guess the string by interacting with the orderlies' program and acting by the game's rules.

Your program should immediately terminate after guessing the string using a query of the second type. In case your program guessed the string incorrectly, or it violated the game rules, it will receive verdict Wrong answer.

Note that in every test case the string is fixed beforehand and will not change during the game, which means that the interactor is not adaptive.

输入格式

First line contains number nn ( 1n1001 \le n \le 100 ) — the length of the picked string.

输出格式

You start the interaction by reading the number nn .

To ask a query about a substring from ll to rr inclusively ( 1lrn1 \le l \le r \le n ), you should output

? l r

on a separate line. After this, all substrings of s[l..r]s[l..r] will be returned in random order, each substring exactly once. In every returned substring all characters will be randomly shuffled.

In the case, if you ask an incorrect query, ask more than 33 queries of the first type or there will be more than 0.777(n+1)2\left\lceil 0.777(n+1)^2 \right\rceil substrings returned in total, you will receive verdict Wrong answer.

To guess the string ss , you should output

! s

on a separate line.

After printing each query, do not forget to flush the output. Otherwise, you will get Idleness limit exceeded. To flush the output, you can use:

  • fflush(stdout) or cout.flush() in C++;
  • System.out.flush() in Java;
  • flush(output) in Pascal;
  • stdout.flush() in Python;
  • see documentation for other languages.

If you received - (dash) as an answer to any query, you need to terminate your program with exit code 0 (for example, by calling exit(0)). This means that there was an error in the interaction protocol. If you don't terminate with exit code 0, you can receive any unsuccessful verdict.

Hack format

To hack a solution, use the following format:

The first line should contain one integer nn ( 1n1001 \le n \le 100 ) — the length of the string, and the following line should contain the string ss .

输入输出样例

  • 输入#1

    4
    
    a
    aa
    a
    
    cb
    b
    c
    
    c

    输出#1

    ? 1 2
    
    ? 3 4
    
    ? 4 4
    
    ! aabc
首页