QOJ.ac
QOJ
ID | Submission ID | Problem | Hacker | Owner | Result | Submit time | Judge time |
---|---|---|---|---|---|---|---|
#334 | #103697 | #6402. MEXimum Spanning Tree | SegmentTree | Crysfly | Success! | 2023-05-13 22:14:45 | 2023-05-13 22:14:48 |
Details
Extra Test:
Wrong Answer
time: 2ms
memory: 3480kb
input:
7 13 1 2 3 1 3 3 1 4 2 3 5 7 3 6 6 3 7 1 3 2 7 5 6 5 6 5 3 4 5 0 7 3 4 5 2 2 4 6 4
output:
6
result:
wrong answer 1st numbers differ - expected: '5', found: '6'
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#103697 | #6402. MEXimum Spanning Tree | Crysfly | WA | 12ms | 3636kb | C++17 | 2.9kb | 2023-05-07 08:20:20 | 2023-05-13 22:15:14 |
answer
#include<bits/stdc++.h>
#define For(i,a,b) for(int i=(a);i<=(b);++i)
#define Rep(i,a,b) for(int i=(a);i>=(b);--i)
#define ll long long
using namespace std;
inline int read()
{
char c=getchar();int x=0;bool f=0;
for(;!isdigit(c);c=getchar())f^=!(c^45);
for(;isdigit(c);c=getchar())x=(x<<1)+(x<<3)+(c^48);
if(f)x=-x;return x;
}
#define mod 998244353
struct modint{
int x;
modint(int o=0){x=o;}
modint &operator = (int o){return x=o,*this;}
modint &operator +=(modint o){return x=x+o.x>=mod?x+o.x-mod:x+o.x,*this;}
modint &operator -=(modint o){return x=x-o.x<0?x-o.x+mod:x-o.x,*this;}
modint &operator *=(modint o){return x=1ll*x*o.x%mod,*this;}
modint &operator ^=(int b){
modint a=*this,c=1;
for(;b;b>>=1,a*=a)if(b&1)c*=a;
return x=c.x,*this;
}
modint &operator /=(modint o){return *this *=o^=mod-2;}
friend modint operator +(modint a,modint b){return a+=b;}
friend modint operator -(modint a,modint b){return a-=b;}
friend modint operator *(modint a,modint b){return a*=b;}
friend modint operator /(modint a,modint b){return a/=b;}
friend modint operator ^(modint a,int b){return a^=b;}
friend bool operator ==(modint a,int b){return a.x==b;}
friend bool operator !=(modint a,int b){return a.x!=b;}
bool operator ! () {return !x;}
modint operator - () {return x?mod-x:0;}
bool operator <(const modint&b)const{return x<b.x;}
};
inline modint qpow(modint x,int y){return x^y;}
vector<modint> fac,ifac,iv;
inline void initC(int n)
{
if(iv.empty())fac=ifac=iv=vector<modint>(2,1);
int m=iv.size(); ++n;
if(m>=n)return;
iv.resize(n),fac.resize(n),ifac.resize(n);
For(i,m,n-1){
iv[i]=iv[mod%i]*(mod-mod/i);
fac[i]=fac[i-1]*i,ifac[i]=ifac[i-1]*iv[i];
}
}
inline modint C(int n,int m){
if(m<0||n<m)return 0;
return initC(n),fac[n]*ifac[m]*ifac[n-m];
}
inline modint sign(int n){return (n&1)?(mod-1):(1);}
#define fi first
#define se second
#define pb push_back
#define mkp make_pair
typedef pair<int,int>pii;
typedef vector<int>vi;
#define maxn 1005
#define inf 0x3f3f3f3f
int n,m;
vector<pii>e[maxn];
struct DSU{
int fa[maxn],cnt;
int gf(int x){
while(x^fa[x])x=fa[x]=fa[fa[x]];
return x;
}
void init(){
For(i,1,n)fa[i]=i;
cnt=n;
}
int merge(int u,int v){
u=gf(u),v=gf(v);
if(u!=v)return fa[u]=v,--cnt,1;
else return 0;
}
}D,tmp;
int per[maxn];
mt19937_64 rnd(time(0));
bool chk(int k)
{
if(!e[k].size())return 0;
For(i,0,k)per[i]=i;
sort(per,per+k+1,[&](int x,int y){
return e[x].size()<e[y].size();
});
// shuffle(per,per+k+1,rnd);
int cnt=0;
tmp.init();
For(ii,0,k){
int i=per[ii];
for(auto it:e[i]){
int u=it.fi,v=it.se;
cnt+=tmp.merge(u,v);
}
if(cnt<ii+1){
return 0;
}
}
return 1;
}
signed main()
{
n=read(),m=read();
For(i,1,m){
int u=read(),v=read(),w=read();
e[w].pb(mkp(u,v));
}
For(i,0,n){
if(!chk(i)){
cout<<i<<endl;
return 0;
}
}
return 0;
}