QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#387884 | #4884. Battleship: New Rules | unputdownable | WA | 2ms | 3756kb | C++17 | 2.6kb | 2024-04-12 22:48:48 | 2024-04-12 22:48:49 |
Judging History
answer
#include <bits/stdc++.h>
// #define int long long
#define i64 long long
#define pii pair <int, int>
using namespace std;
int n,Ax,Ay,Bx,By;
inline void Answer(int x,int y) {
cout<<"! "<<x<<' '<<y<<endl;
int res; cin>>res;
if(res==-1) exit(0);
}
inline int qry(int x,int y) {
cout<<"? "<<x<<' '<<y<<endl;
int res; cin>>res;
if(res==-1) exit(0);
return res;
}
#define lch (x<<1)
#define rch (x<<1|1)
inline void chkmin(int&x,int y) { x=min(x,y); }
inline void chkmax(int&x,int y) { x=max(x,y); }
struct segtree {
int lzy[2003];
void init(int n,int v) { for(int i=0; i<2003; ++i) lzy[i]=v; }
void upd(int x,int l,int r,const int ql,const int qr,const int v,const auto f) {
if(ql<=l&&r<=qr) return f(lzy[x],v),void();
int mid=(l+r)>>1;
if(ql<=mid) upd(lch,l,mid,ql,qr,v,f);
if(qr> mid) upd(rch,mid+1,r,ql,qr,v,f);
}
int qry(int x,int l,int r,const int q,const auto f) {
if(l==r) return lzy[x];
int mid=(l+r)>>1;
if(q<=mid) return f(lzy[x],qry(lch,l,mid,q,f));
else return f(lzy[x],qry(rch,mid+1,r,q,f));
}
} L,R;
mt19937 rnd(198341280);
int rev[2003];
pii pos[250005];
inline void dfs(int x,int l,int r) {
int mid=(l+r)>>1; rev[x]=mid;
if(l<mid) dfs(lch,l,mid-1);
if(r>mid) dfs(rch,mid+1,r);
}
inline void work() {
cin>>n;
if(n&1) return Answer(-1,-1),void();
n=n/2-1;
int cnt=0;
auto Max=[&](int x,int y){return x>y ? x : y;};
auto Min=[&](int x,int y){return x<y ? x : y;};
dfs(1,1,n);
int ccc=0;
for(int i=1; i<=4*n; ++i) if(rev[i]) rev[++ccc]=rev[i];
for(int i=1; i<=n; ++i) {
pos[++cnt]=make_pair(rev[i],rev[i]);
for(int u=1; u<i; ++u) {
pos[++cnt]=make_pair(rev[i],rev[u]);
pos[++cnt]=make_pair(rev[u],rev[i]);
}
}
assert(cnt==n*n);
L.init(n,0);
R.init(n,n+1);
for(int i=1; i<=cnt; ++i) {
int A,B,C,D,x=pos[cnt].first,y=pos[cnt].second;
if(L.qry(1,1,n,x,Max)>=y&&y>=R.qry(1,1,n,x,Min)) continue;
A=qry(x*2,y*2),B=qry(x*2,y*2+1);
C=qry(x*2+1,y*2),D=qry(x*2+1,y*2+1);
if(A==0&&B==0&&C==0&&D==0) {
return Answer(x<<1,y<<1),void();
}
if(A) R.upd(1,1,n,x,n,y,chkmin);
if(B) L.upd(1,1,n,x,n,y,chkmax);
if(C) R.upd(1,1,n,1,x,y,chkmin);
if(D) L.upd(1,1,n,1,x,y,chkmax);
}
}
signed main() {
// freopen("localinput","r",stdin);
// freopen("localoutput","w",stdout);
int T; cin>>T;
while(T--) work();
// fprintf(stderr,"%.4lf\n",1.0*clock()/CLOCKS_PER_SEC);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3752kb
input:
2 3 1 4 0 0 0 0 1
output:
! -1 -1 ? 2 2 ? 2 3 ? 3 2 ? 3 3 ! 2 2
result:
ok max_C=1.00, avg_C=0.50 (2 test cases)
Test #2:
score: 0
Accepted
time: 2ms
memory: 3716kb
input:
100 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 ...
output:
? 2 2 ? 2 3 ? 3 2 ? 3 3 ! 2 2 ? 2 2 ? 2 3 ? 3 2 ? 3 3 ! 2 2 ? 2 2 ? 2 3 ? 3 2 ? 3 3 ! 2 2 ? 2 2 ? 2 3 ? 3 2 ? 3 3 ! 2 2 ? 2 2 ? 2 3 ? 3 2 ? 3 3 ! 2 2 ? 2 2 ? 2 3 ? 3 2 ? 3 3 ! 2 2 ? 2 2 ? 2 3 ? 3 2 ? 3 3 ! 2 2 ? 2 2 ? 2 3 ? 3 2 ? 3 3 ! 2 2 ? 2 2 ? 2 3 ? 3 2 ? 3 3 ! 2 2 ? 2 2 ? 2 3 ? 3 2 ? 3 3 ! 2 2 ...
result:
ok max_C=1.00, avg_C=1.00 (100 test cases)
Test #3:
score: -100
Wrong Answer
time: 0ms
memory: 3756kb
input:
100 10 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 -1
output:
? 6 8 ? 6 9 ? 7 8 ? 7 9 ? 6 8 ? 6 9 ? 7 8 ? 7 9 ? 6 8 ? 6 9 ? 7 8 ? 7 9 ? 6 8 ? 6 9 ? 7 8 ? 7 9 ? 6 8 ? 6 9 ? 7 8 ? 7 9 ? 6 8 ? 6 9 ? 7 8 ? 7 9 ? 6 8 ? 6 9 ? 7 8 ? 7 9 ? 6 8 ? 6 9 ? 7 8 ? 7 9 ? 6 8 ? 6 9 ? 7 8 ? 7 9 ? 6 8 ? 6 9 ? 7 8 ? 7 9 ? 6 8 ? 6 9 ? 7 8 ? 7 9 ? 6 8 ? 6 9 ? 7 8 ? 7 9 ? 6 8 ? 6 9 ...
result:
wrong output format Unexpected end of file - int32 expected (test case 1)