QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#87108 | #5029. 在路上 | XZTmaxsmall67 | Compile Error | / | / | C++14 | 1.6kb | 2023-03-11 17:37:21 | 2023-03-11 17:37:25 |
Judging History
你现在查看的是最新测评结果
- [2023-08-10 23:21:45]
- System Update: QOJ starts to keep a history of the judgings of all the submissions.
- [2023-03-11 17:37:25]
- 评测
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2023-03-11 17:37:21]
- 提交
answer
#include"path.h"
#include<bits/stdc++.h>
using namespace std;
const int N=5e4+100;
int n,m,l,r,sizl,sizr;
int bel[N];
mt19937 rd(time(0));
vector<int>lst,st;
int getfa(int x)
{
if(bel[x]==x)return x;
int p=0;for(auto y:lst)if(!p)p=y;else p=ask(x,p,y);
return p;
}
int check(int x,int lc,int rc)
{
int cnt=0,now=0;
if(lc!=rc)cnt=abs(lc-rc),now=lc>rc?l:r;
for(auto y:st)if(x!=y&&bel[x]==-1)
if(!now||ask(now,x,y)!=x)now=y,cnt++;
else if(--cnt==0)now=0;
if(!now)return 1;
cnt=0;
for(auto y:st)if(x!=y&&bel[x]==-1)if(y==now||ask(x,now,y)!=x)cnt++;
return cnt*2<=n;
}
int solve()
{
if(l==r||!st.size())return 0;
vector<int>vt(st);st.clear();lst.clear();
for(auto x:vt)
{
if(x==l||x==r)continue;
bel[x]=ask(l,x,r);
if(bel[x]==l)sizl++;
else if(bel[x]==r)sizr++;
else if(bel[x]==x)lst.push_back(x),st.push_back(x);
else st.push_back(x);
}
if(sizl*2>n||sizr*2>n)return 0;
uniform_int_distribution<int>dist(0,st.size()-1);
int p=getfa(st[dist(rd)]);
int lc=sizl,rc=sizr;
for(auto x:st)
{
if(x==p)continue;
if(ask(x,l,p)!=p)bel[x]=0,lc++;
else if(ask(x,r,p)!=p)bel[x]=1,rc++;
else bel[x]=-1;
}
if(lc*2<=n&&rc*2<=n)if(check(p))return p;
if(lc>rc)r=p,sizr++;else l=p,sizl++;
return solve();
}
int centroid(int id,int nn,int mm)
{
if(id>5)exit(0);
int t=0;n=nn,m=mm;
uniform_int_distribution<int>dist(1,n);
if(nn==3)return ask(1,2,3);
while(1)
{
st.clear();l=dist(rd),r=dist(rd),sizl=sizr=1;
for(int i=1;i<=n;i++)if(i!=l&&i!=r)st.push_back(i);
if((t=solve()))return t;
}
}
詳細信息
implementer.cpp: In function ‘int main()’: implementer.cpp:60:14: warning: ignoring return value of ‘size_t fread(void*, size_t, size_t, FILE*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 60 | fread(Interactor::rbuf,1,50000000,stdin); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ answer.code: In function ‘int solve()’: answer.code:51:37: error: too few arguments to function ‘int check(int, int, int)’ 51 | if(lc*2<=n&&rc*2<=n)if(check(p))return p; | ~~~~~^~~ answer.code:15:5: note: declared here 15 | int check(int x,int lc,int rc) | ^~~~~