CF870D.Something with XOR Queries

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

This is an interactive problem.

Jury has hidden a permutation pp of integers from 00 to n1n-1 . You know only the length nn . Remind that in permutation all integers are distinct.

Let bb be the inverse permutation for pp , i.e. pbi=ip_{bi}=i for all ii . The only thing you can do is to ask xor of elements pip_{i} and bjb_{j} , printing two indices ii and jj (not necessarily distinct). As a result of the query with indices ii and jj you'll get the value , where denotes the xor operation. You can find the description of xor operation in notes.

Note that some permutations can remain indistinguishable from the hidden one, even if you make all possible n2n^{2} queries. You have to compute the number of permutations indistinguishable from the hidden one, and print one of such permutations, making no more than 2n2n queries.

The hidden permutation does not depend on your queries.

输入格式

The first line contains single integer nn ( 1<=n<=50001<=n<=5000 ) — the length of the hidden permutation. You should read this integer first.

输出格式

When your program is ready to print the answer, print three lines.

In the first line print "!".

In the second line print single integer answerscntanswers_cnt — the number of permutations indistinguishable from the hidden one, including the hidden one.

In the third line print nn integers p0,p1,...,pn1p_{0},p_{1},...,p_{n-1} ( 0<=pi<n0<=p_{i}<n , all pip_{i} should be distinct) — one of the permutations indistinguishable from the hidden one.

Your program should terminate after printing the answer.

Interaction

To ask about xor of two elements, print a string "? i j", where ii and jj — are integers from 00 to n1n-1 — the index of the permutation element and the index of the inverse permutation element you want to know the xor-sum for. After that print a line break and make flush operation.

After printing the query your program should read single integer — the value of .

For a permutation of length nn your program should make no more than 2n2n queries about xor-sum. Note that printing answer doesn't count as a query. Note that you can't ask more than 2n2n questions. If you ask more than 2n2n questions or at least one incorrect question, your solution will get "Wrong answer".

If at some moment your program reads -1 as an answer, it should immediately exit (for example, by calling exit(0)). You will get "Wrong answer" in this case, it means that you asked more than 2n2n questions, or asked an invalid question. If you ignore this, you can get other verdicts since your program will continue to read from a closed stream.

Your solution will get "Idleness Limit Exceeded", if you don't print anything or forget to flush the output, including for the final answer .

To flush you can use (just after printing line break):

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

Hacking

For hacking use the following format:

nn

p0p_{0} p1p_{1} ... pn1p_{n-1}

Contestant programs will not be able to see this input.

输入输出样例

  • 输入#1

    3
    0
    0
    3
    2
    3
    2

    输出#1

    ? 0 0
    ? 1 1
    ? 1 2
    ? 0 2
    ? 2 1
    ? 2 0
    !
    1
    0 1 2
  • 输入#2

    4
    2
    3
    2
    0
    2
    3
    2
    0

    输出#2

    ? 0 1
    ? 1 2
    ? 2 3
    ? 3 3
    ? 3 2
    ? 2 1
    ? 1 0
    ? 0 0
    !
    2
    3 1 2 0

说明/提示

xor operation, or bitwise exclusive OR, is an operation performed over two integers, in which the ii -th digit in binary representation of the result is equal to 11 if and only if exactly one of the two integers has the ii -th digit in binary representation equal to 11 . For more information, see here.

In the first example p=[0,1,2]p=[0,1,2] , thus b=[0,1,2]b=[0,1,2] , the values are correct for the given i,ji,j . There are no other permutations that give the same answers for the given queries.

The answers for the queries are:

  • ,
  • ,
  • ,
  • ,
  • ,
  • .

In the second example p=[3,1,2,0]p=[3,1,2,0] , and b=[3,1,2,0]b=[3,1,2,0] , the values match for all pairs i,ji,j . But there is one more suitable permutation p=[0,2,1,3]p=[0,2,1,3] , b=[0,2,1,3]b=[0,2,1,3] that matches all n2n^{2} possible queries as well. All other permutations do not match even the shown queries.

首页