QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#727086 | #4584. Not One | MeatInTheMiddle# | WA | 49ms | 33760kb | C++20 | 2.6kb | 2024-11-09 11:24:00 | 2024-11-09 11:24:01 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define fileio() freopen("input.txt","r",stdin); freopen("output.txt","w",stdout)
#define fio() ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
#define all(x) (x).begin(), (x).end()
#define allr(x) x.rbegin(), x.rend()
#define cmprs(x) sort(all(x)),x.erase(unique(all(x)),x.end())
#define endl "\n"
#define sp " "
#define pb push_back
#define lb lower_bound
#define ub upper_bound
#define F first
#define S second
#define rz resize
#define sz(a) (int)(a.size())
#define clr(a) a.clear()
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef pair<int, ll> pil;
typedef tuple<int, int, int> tpi;
typedef tuple<ll, ll, ll> tpl;
typedef pair<double, ll> pdl;
typedef pair<double, int> pdi;
const int dx[] = {1,-1,0,0,1,1,-1,-1};
const int dy[] = {0,0,1,-1,1,-1,1,-1};
const ll MOD = 1e9+7;
const int INF = 0x3f3f3f3f;
const ll LINF = 0x3f3f3f3f3f3f3f3f;
const int MAXN = 101010; // PLZ CHK!
const int MAXA = 1010101;
int mp[MAXA];
void sv() {
for (int i=2; i<MAXA; i++) mp[i]=i;
for (int i=4; i<MAXA; i+=2) mp[i]=2;
for (int i=3; i*i<MAXA; i++) {
if (mp[i]!=i) continue;
for (int j=i*i; j<MAXA; j+=i) mp[j]=i;
}
}
vector<int> fct(int x) {
vector<int> ret;
while (x != 1) {
ret.push_back(mp[x]);
x=x/mp[x];
}
return ret;
}
struct dsu {
int n;
vector<int> p,s;
void init(int _n) {
n=_n+10;
p.assign(n,0),s.assign(n,1);
iota(all(p),0);
}
int fd(int a) {
if (a==p[a]) return a;
return p[a]=fd(p[a]);
}
int mg(int a, int b) {
a=fd(a), b=fd(b);
if (a==b) return 0;
s[a]+=s[b], s[b]=0, p[b]=a;
return 1;
}
};
int N,A[MAXN];
pii E[MAXN];
vector<pii> G[MAXA];
dsu D;
int main() {
fio();
sv();
cin>>N;
for (int i=1; i<=N; i++) cin>>A[i];
D.init(N);
for (int i=1; i<N; i++) {
int u,v; cin>>u>>v;
E[i]={u,v};
vector<int> f=fct(gcd(A[u],A[v]));
for (int x:f) G[x].pb(E[i]);
}
int ans=0;
for (int i=2; i<MAXA; i++) {
if (G[i].empty()) continue;
// cout<<i<<": ";
// for (auto [u,v]:G[i]) cout<<u<<sp<<v<<endl;
for (auto [u,v]:G[i]) D.mg(u,v);
for (auto [u,v]:G[i]) {
u=D.fd(u),v=D.fd(v);
ans=max(ans, D.s[u]);
ans=max(ans, D.s[v]);
}
for (auto [u,v]:G[i]) {
D.p[u]=u, D.p[v]=v;
D.s[u]=1, D.s[v]=1;
}
}
cout<<ans;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 10664kb
input:
7 10 5 8 6 10 6 4 1 2 2 3 2 4 4 5 4 6 4 7
output:
4
result:
ok single line: '4'
Test #2:
score: 0
Accepted
time: 4ms
memory: 10916kb
input:
4 1 1 1 1 1 2 2 3 3 4
output:
0
result:
ok single line: '0'
Test #3:
score: 0
Accepted
time: 7ms
memory: 10732kb
input:
5 100 100 100 100 100 3 4 1 2 3 5 2 4
output:
5
result:
ok single line: '5'
Test #4:
score: 0
Accepted
time: 7ms
memory: 10032kb
input:
2 1 1 1 2
output:
0
result:
ok single line: '0'
Test #5:
score: 0
Accepted
time: 49ms
memory: 33760kb
input:
100000 860163 795323 862289 543383 792647 337047 353985 959953 874318 573652 69827 958063 571741 704399 311826 920477 792478 151531 872269 592307 853819 865817 940735 620657 937154 696551 749279 552523 836161 707467 389626 459089 563763 668884 810391 639709 419361 580342 519595 836124 494959 669379 ...
output:
213
result:
ok single line: '213'
Test #6:
score: 0
Accepted
time: 21ms
memory: 10312kb
input:
100000 999983 999983 999961 999961 999979 999979 999979 999961 999983 999961 999979 999961 999961 999983 999961 999983 999983 999979 999961 999979 999983 999979 999983 999961 999979 999961 999979 999979 999961 999979 999983 999979 999961 999961 999961 999961 999961 999983 999979 999983 999979 999961...
output:
70
result:
ok single line: '70'
Test #7:
score: 0
Accepted
time: 29ms
memory: 11048kb
input:
100000 721703 392879 695588 695588 360569 721703 721703 721703 392879 721703 521691 173897 173897 31699 605629 330661 521691 887572 869485 721703 538883 633980 347794 721703 173897 524464 380388 983370 330661 196674 982669 327790 392879 721703 557243 347794 65558 163895 31699 521691 392879 426127 22...
output:
23467
result:
ok single line: '23467'
Test #8:
score: 0
Accepted
time: 24ms
memory: 12008kb
input:
100000 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983 999983...
output:
100000
result:
ok single line: '100000'
Test #9:
score: 0
Accepted
time: 11ms
memory: 9964kb
input:
16666 499521 566687 918452 827210 997739 405921 930466 453499 449367 302663 658220 713125 615536 484783 586258 469620 984395 526320 799319 849099 284114 723734 22671 661826 325985 662335 107207 564634 836931 323058 117954 661326 658962 599495 103335 377185 45338 385027 50770 961843 691799 693591 281...
output:
13
result:
ok single line: '13'
Test #10:
score: 0
Accepted
time: 20ms
memory: 11528kb
input:
66666 10 6 90 60 15 150 90 10 150 12 30 10 12 150 15 50 6 60 60 150 50 50 50 30 10 45 150 6 6 90 50 6 30 12 90 6 60 15 90 45 6 90 45 45 10 60 150 30 30 6 90 12 30 30 6 60 12 45 50 60 45 50 50 50 12 60 10 50 30 150 15 150 90 10 10 12 10 30 6 60 45 6 6 60 12 12 45 12 12 45 12 60 30 30 150 90 6 150 6 6...
output:
46
result:
ok single line: '46'
Test #11:
score: 0
Accepted
time: 7ms
memory: 9796kb
input:
28571 921969 307323 580499 751234 102441 648793 743442 68294 955092 600043 568071 610323 614646 102441 136588 962429 307588 239029 990263 170735 50247 221505 614646 232539 102441 424891 682940 102441 682940 887822 424891 239029 849782 68294 819528 850736 751234 375617 400566 34147 768051 341470 1024...
output:
12698
result:
ok single line: '12698'
Test #12:
score: 0
Accepted
time: 28ms
memory: 11412kb
input:
99415 34616 810608 192350 394543 662841 466264 344614 520619 330891 310932 733902 352703 158039 846731 479629 7807 614728 918662 549561 535798 416048 953051 388610 112163 192506 610550 328203 268293 117567 49639 485945 159856 235364 42325 438801 140386 658755 181970 11852 602321 688908 569920 8816 1...
output:
76
result:
ok single line: '76'
Test #13:
score: 0
Accepted
time: 20ms
memory: 11876kb
input:
100000 280401 761952 441017 796661 314679 435234 485202 937046 696099 625259 759522 701907 631073 602136 209475 52398 548659 494159 499651 614433 138272 622721 61832 606399 466753 468859 572846 371879 766454 93732 607153 230056 390233 203061 609095 889707 266382 543672 616447 159597 211647 597406 14...
output:
11067
result:
ok single line: '11067'
Test #14:
score: 0
Accepted
time: 30ms
memory: 11008kb
input:
93769 849132 451689 130007 436266 701702 236258 740041 423243 934674 413025 770289 426117 465372 974372 315378 228808 858754 236739 725646 533859 789429 269744 152988 160376 426030 801877 82477 507774 383870 776467 894274 928966 699962 309984 294875 605422 9606 445815 776629 262295 735221 617452 411...
output:
46
result:
ok single line: '46'
Test #15:
score: -100
Wrong Answer
time: 7ms
memory: 10492kb
input:
2 1 1024 1 2
output:
0
result:
wrong answer 1st lines differ - expected: '1', found: '0'