QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#613529#8939. PermutationMu_SilkWA 91ms3684kbC++20976b2024-10-05 14:09:562024-10-05 14:12:36

Judging History

This is the latest submission verdict.

  • [2024-10-05 14:12:36]
  • Judged
  • Verdict: WA
  • Time: 91ms
  • Memory: 3684kb
  • [2024-10-05 14:09:56]
  • Submitted

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int query(int l,int r){
    cout<<"? "<<l<<" "<<r<<"\n";
    int p;cin>>p;
    return p;
}

int ans=-1;
void calc(int l,int r,int p){
    if(r==l){
        ans=l;
        return;
    }
    if(r==l+1){
        if(p==0)p=query(l,r);
        ans=r+l-p;
        return;
    }
    if(p==0)p=query(l,r);
    int m1=(l*2+r)/3;
    int m2=(l+r*2)/3;
    if(p<=m2){
        if(m2-l+1>=2){
            int t=query(l,m2);
            if(t==p)calc(l,m2,p);
            else calc(m2+1,r,0);
        }
        else calc(m2+1,r,0);
    }
    else{
        if(r-m1>=2){
            int t=query(m1+1,r);
            if(t==p)calc(m1+1,r,p);
            else calc(l,m1,0);
        }
        else calc(l,m1,0);
    }
}

void solve(){
    int n;cin>>n;
    calc(1,n,0);
    cout<<"! "<<ans<<endl;
}

int main(){
    int n=1;
    cin>>n;
    while(n--)solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3620kb

input:

3
5
3
2
5
6
6
3
1
4
3
2

output:

? 1 5
? 1 3
? 4 5
! 4
? 1 6
? 3 6
? 1 2
! 2
? 1 4
? 1 3
! 4

result:

ok Correct (3 test cases)

Test #2:

score: 0
Accepted
time: 82ms
memory: 3596kb

input:

10000
10
2
2
2
3
5
10
10
10
7
5
10
5
5
1
6
10
4
4
4
4
4
10
10
6
3
3
2
10
3
3
3
3
2
10
1
5
9
9
10
1
1
3
6
10
2
4
9
8
10
3
3
3
1
5
10
4
7
8
9
10
8
7
1
1
2
10
4
1
9
8
10
7
7
7
6
4
10
5
1
8
8
10
8
8
6
9
10
2
2
1
7
10
6
4
10
10
10
1
1
3
6
10
7
7
5
1
2
10
7
7
4
1
2
10
3
4
10
10
10
4
4
4
4
3
10
8
7
4
3
2
1...

output:

? 1 10
? 1 7
? 1 5
? 1 3
? 4 5
! 4
? 1 10
? 5 10
? 7 10
? 5 6
! 6
? 1 10
? 1 7
? 1 5
? 6 7
! 7
? 1 10
? 1 7
? 1 5
? 3 5
? 3 4
! 3
? 1 10
? 5 10
? 1 4
? 1 3
? 2 3
! 1
? 1 10
? 1 7
? 1 5
? 1 3
? 2 3
! 1
? 1 10
? 1 7
? 8 10
? 8 9
! 8
? 1 10
? 1 7
? 1 5
? 6 7
! 7
? 1 10
? 1 7
? 8 10
? 8 9
! 10
? 1 10
? ...

result:

ok Correct (10000 test cases)

Test #3:

score: 0
Accepted
time: 63ms
memory: 3604kb

input:

10000
3
1
2
11
5
5
3
7
2
2
19
3
3
4
13
12
11
7
5
5
5
4
3
3
3
19
6
6
6
6
6
5
4
2
2
15
11
11
11
11
11
10
14
1
1
1
1
3
16
4
4
4
1
7
3
3
2
19
13
13
6
5
5
4
2
2
4
1
3
7
2
2
2
2
3
2
2
17
1
1
1
1
2
4
14
9
1
12
12
11
20
9
9
3
13
13
6
4
2
5
18
7
7
7
7
7
6
8
8
8
6
5
8
6
6
6
5
16
10
10
10
10
10
10
6
1
1
3
10
3...

output:

? 1 3
? 1 2
! 3
? 1 11
? 1 7
? 1 5
? 6 7
! 6
? 1 2
! 1
? 1 19
? 1 13
? 1 9
? 10 13
? 12 13
? 10 11
! 10
? 1 7
? 1 5
? 3 5
? 4 5
! 3
? 1 3
? 2 3
! 2
? 1 19
? 1 13
? 1 9
? 1 6
? 3 6
? 5 6
? 3 4
! 3
? 1 2
! 1
? 1 15
? 6 15
? 6 12
? 9 12
? 9 11
? 10 11
! 9
? 1 14
? 1 9
? 1 6
? 1 4
? 1 3
! 4
? 1 16
? 1 1...

result:

ok Correct (10000 test cases)

Test #4:

score: 0
Accepted
time: 91ms
memory: 3616kb

input:

10000
47
23
23
31
11
9
2
1
14
8
2
14
13
11
25
6
6
4
13
13
13
12
7
4
4
4
3
9
2
2
2
2
2
27
27
27
27
27
24
21
20
21
7
7
7
7
7
6
5
43
41
21
7
7
7
5
3
3
22
6
14
20
17
21
34
29
29
25
17
17
17
16
42
20
20
20
20
20
20
20
19
47
21
21
21
21
21
21
21
20
19
41
25
11
30
33
39
39
38
19
17
17
16
9
10
21
14
14
14
1...

output:

? 1 47
? 1 31
? 12 31
? 1 11
? 5 11
? 1 4
? 1 3
! 4
? 1 14
? 1 9
? 10 14
? 12 14
? 10 11
! 10
? 1 25
? 1 17
? 1 11
? 12 17
? 12 15
? 12 14
? 12 13
! 14
? 1 7
? 1 5
? 3 5
? 3 4
! 5
? 1 9
? 1 6
? 1 4
? 1 3
? 1 2
! 1
? 1 27
? 10 27
? 16 27
? 20 27
? 23 27
? 20 22
? 20 21
! 22
? 1 21
? 1 14
? 1 9
? 4 9
...

result:

ok Correct (10000 test cases)

Test #5:

score: -100
Wrong Answer
time: 50ms
memory: 3684kb

input:

10000
100
47
61
93
96
71
71
71
71
71
9
2
2
2
2
1
53
46
35
6
6
6
6
6
6
33
3
16
31
31
27
32
82
60
29
4
8
23
23
21
24
88
39
39
8
59
59
59
59
59
59
71
24
29
59
59
59
54
61
61
92
52
45
88
88
88
81
89
89
89
24
11
11
11
9
3
2
66
51
51
51
51
51
45
40
40
40
92
43
43
50
20
20
20
20
20
20
19
48
1
1
1
1
1
5
9
9...

output:

? 1 100
? 1 67
? 68 100
? 79 100
? 68 78
? 68 74
? 68 72
? 70 72
? 70 71
! 70
? 1 9
? 1 6
? 1 4
? 1 3
? 1 2
! 3
? 1 53
? 19 53
? 1 18
? 1 12
? 1 8
? 4 8
? 4 6
? 5 6
! 5
? 1 33
? 1 22
? 23 33
? 27 33
? 27 31
? 32 33
! 33
? 1 82
? 29 82
? 1 28
? 1 19
? 20 28
? 20 25
? 20 23
? 24 25
! 25
? 1 88
? 1 59
...

result:

wrong answer Too many queries , n = 63 , now_q 10 (test case 5593)