QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#353140 | #8235. Top Cluster | Graphcity | WA | 430ms | 120464kb | C++20 | 2.0kb | 2024-03-13 21:40:34 | 2024-03-13 21:40:35 |
Judging History
answer
#include<bits/stdc++.h>
#define ll long long
#define For(i,a,b) for(int i=(a);i<=(b);++i)
#define Rof(i,a,b) for(int i=(a);i>=(b);--i)
using namespace std;
const int Maxn=5e5;
inline ll read()
{
ll x=0,f=1;
char ch=getchar();
while(ch<'0' || ch>'9')
{
if(ch=='-') f=-1;
ch=getchar();
}
while(ch>='0' && ch<='9')
{
x=x*10+ch-'0';
ch=getchar();
}
return x*f;
}
int n,m,h[Maxn+5],mn; ll dis[Maxn+5];
int dfn[Maxn+5],st[Maxn+5][20],cur;
int X[Maxn+5],Y[Maxn+5];
vector<pair<int,int>> v[Maxn+5];
vector<int> w[Maxn+5];
inline int Get(int x,int y) {return dfn[x]<dfn[y]?x:y;}
inline int LCA(int x,int y)
{
if(x==y) return x; if((x=dfn[x])>(y=dfn[y])) swap(x,y);
int len=__lg(y-x++); return Get(st[x][len],st[y-(1<<len)+1][len]);
}
inline ll Dis(int x,int y)
{
if(!x || !y) return -1;
return dis[x]+dis[y]-dis[LCA(x,y)]*2;
}
inline void dfs(int x,int fa)
{
dfn[x]=++cur,st[cur][0]=fa;
for(auto [y,z]:v[x]) if(y!=fa)
dis[y]=dis[x]+z,dfs(y,x);
}
int main()
{
// freopen("1.in","r",stdin);
n=read(),m=read();
For(i,1,n) h[i]=min(read(),1ll+n),w[h[i]].push_back(i);
For(i,1,n-1)
{
int a=read(),b=read(),c=read();
v[a].emplace_back(b,c),v[b].emplace_back(a,c);
}
for(int i=0;;++i) if(w[i].empty()) {mn=i; break;}
dfs(1,0);
For(j,1,19) for(int i=1;i+(1<<j)-1<=n;++i)
st[i][j]=Get(st[i][j-1],st[i+(1<<j-1)][j-1]);
For(i,0,n+1)
{
int x=0,y=0; if(i) x=X[i-1],y=Y[i-1];
for(auto k:w[i])
{
if(!x) {x=k; continue;} if(!y) {y=k; continue;}
if(Dis(x,k)>Dis(x,y)) y=k; else if(Dis(y,k)>Dis(x,y)) x=k;
} X[i]=x,Y[i]=y;
}
while(m--)
{
int x=read(),l=0,r=mn; ll k=read();
while(l<r)
{
int mid=(l+r)/2;
if(Dis(x,X[mid])>k || Dis(x,Y[mid])>k) r=mid;
else l=mid+1;
} printf("%d\n",l);
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 11956kb
input:
5 4 3 9 0 1 2 1 2 10 3 1 4 3 4 3 3 5 2 3 0 1 0 4 6 4 7
output:
1 0 3 4
result:
ok 4 number(s): "1 0 3 4"
Test #2:
score: 0
Accepted
time: 367ms
memory: 109316kb
input:
500000 500000 350828 420188 171646 209344 4 999941289 289054 79183 999948352 427544 160827 138994 192204 108365 99596 999987124 292578 2949 384841 269390 999920664 315611 163146 51795 265839 34188 999939494 145387 366234 86466 220368 357231 347706 332064 279036 173185 5901 217061 112848 37915 377359...
output:
0 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 249999 2499...
result:
ok 500000 numbers
Test #3:
score: 0
Accepted
time: 425ms
memory: 109348kb
input:
500000 500000 416779 59604 366180 195604 4 30957 999969109 7476 352690 368624 121597 999960303 999933891 13 14 138579 294015 227392 106760 117837 208506 999997971 34770 40258 182765 65889 206246 233051 130491 182099 117381 241945 449750 155921 356191 999955435 2243 450904 242106 178163 148523 75648 ...
output:
0 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 250002 2500...
result:
ok 500000 numbers
Test #4:
score: 0
Accepted
time: 391ms
memory: 116588kb
input:
500000 500000 161260 258036 999901390 280191 21975 193647 397811 362276 206096 421117 336278 416815 31870 999934957 999977591 15 999991550 235871 999916756 19 241647 466194 218880 352702 84559 479034 24903 124981 339271 153019 157132 333035 124326 464181 219609 94164 999933701 440055 118732 2285 175...
output:
0 250000 250000 69 10 250000 250000 0 5 250000 250000 250000 1 33 69 10 250000 250000 250000 10 0 250000 250000 250000 1 250000 250000 0 250000 10 5 0 33 10 250000 1 66 250000 1 250000 1 250000 250000 250000 16 1 1 0 5 10 250000 250000 0 250000 250000 250000 250000 250000 250000 250000 5 1 250000 1 ...
result:
ok 500000 numbers
Test #5:
score: 0
Accepted
time: 430ms
memory: 116596kb
input:
500000 500000 205699 141313 291987 999929528 111195 248994 999960789 391023 323134 92686 432395 316257 188889 219187 315056 39556 999959131 279778 30709 419259 242325 169515 137848 999905250 130641 245510 26 52987 999900052 144308 180276 162429 405263 130502 101937 108999 259339 137566 414011 304915...
output:
0 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 0 250000 3 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 250000 0 250000 250000 250000 250000 250000 2 250...
result:
ok 500000 numbers
Test #6:
score: 0
Accepted
time: 399ms
memory: 120464kb
input:
500000 500000 142817 198136 999910358 236637 238445 325614 22961 999909937 354352 999984540 189454 221148 208300 169118 999945163 256203 999945857 276295 175580 481676 114118 119423 999962365 999904418 250723 333971 311979 384475 386372 11544 999956892 999960490 999936512 292089 42395 5450 326202 26...
output:
0 250004 0 4 6 5 250004 6 250004 250004 0 0 250004 250004 250004 250004 0 0 250004 250004 250004 0 0 0 0 0 6 0 0 0 0 6 0 250004 4 250004 250004 250004 250004 250004 0 0 6 250004 6 250004 0 0 6 250004 4 250004 0 6 250004 250004 4 250004 0 6 0 250004 0 0 0 250004 4 0 0 6 0 0 0 6 0 250004 4 250004 5 25...
result:
ok 500000 numbers
Test #7:
score: 0
Accepted
time: 399ms
memory: 116676kb
input:
500000 500000 273731 92547 391851 223257 245734 999907678 125748 999999710 260816 269057 173753 337309 208492 162862 160710 371998 296145 999901286 269727 36806 193730 999966618 219876 999919231 999950308 999989538 403483 27 199626 83765 58199 38349 999985326 362514 103279 96338 292486 353093 235704...
output:
0 250007 0 250007 250007 250007 250007 250007 250007 0 250007 0 250007 250007 250007 250007 250007 250007 250007 250007 250007 250007 250007 2 250007 250007 250007 250007 250007 250007 250007 250007 250007 250007 250007 250007 0 250007 250007 250007 250007 250007 250007 250007 250007 250007 250007 2...
result:
ok 500000 numbers
Test #8:
score: -100
Wrong Answer
time: 395ms
memory: 113548kb
input:
500000 500000 38066 263927 999904526 64975 999942253 139690 333059 341736 101159 145885 366360 999977224 58855 20369 491696 99014 999901769 497319 464130 118700 167144 197334 22373 266338 218334 344178 201845 470679 63936 29 473097 168465 91804 999907288 213685 441541 15210 999994423 241375 262928 1...
output:
0 249999 3 3 3 3 3 0 3 3 0 249999 3 249999 249999 249999 3 249999 249999 249999 3 249999 249999 3 249999 249999 249999 249999 249999 3 249999 249999 249999 3 249999 249999 249999 3 249999 3 249999 3 0 249999 3 249999 249999 249999 0 3 249999 249999 0 249999 249999 249999 249999 3 249999 0 0 0 3 3 3 ...
result:
wrong answer 3790th numbers differ - expected: '1', found: '6'