結果
問題 | No.2642 Don't cut line! |
ユーザー | kmjp |
提出日時 | 2024-02-26 23:41:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,927 bytes |
コンパイル時間 | 2,615 ms |
コンパイル使用メモリ | 215,136 KB |
実行使用メモリ | 47,628 KB |
最終ジャッジ日時 | 2024-09-29 11:49:13 |
合計ジャッジ時間 | 8,415 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 187 ms
31,260 KB |
testcase_02 | AC | 156 ms
31,132 KB |
testcase_03 | AC | 140 ms
31,384 KB |
testcase_04 | AC | 145 ms
31,388 KB |
testcase_05 | AC | 144 ms
31,264 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 139 ms
31,264 KB |
testcase_17 | AC | 117 ms
28,188 KB |
testcase_18 | AC | 129 ms
29,852 KB |
testcase_19 | AC | 87 ms
24,480 KB |
testcase_20 | AC | 76 ms
36,600 KB |
testcase_21 | AC | 71 ms
15,260 KB |
testcase_22 | AC | 101 ms
25,500 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 11 ms
43,400 KB |
testcase_34 | AC | 11 ms
41,236 KB |
testcase_35 | AC | 10 ms
41,484 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int N,K; ll C; ll U[101010],V[101010],W[101010],val[101010]; template<int um> class UF { public: vector<int> par,rank,cnt,G[um]; UF() {par=rank=vector<int>(um,0); cnt=vector<int>(um,1); for(int i=0;i<um;i++) par[i]=i;} void reinit(int num=um) {int i; FOR(i,num) rank[i]=0,cnt[i]=1,par[i]=i;} int operator[](int x) {return (par[x]==x)?(x):(par[x] = operator[](par[x]));} int count(int x) { return cnt[operator[](x)];} int operator()(int x,int y) { if((x=operator[](x))==(y=operator[](y))) return x; cnt[y]=cnt[x]=cnt[x]+cnt[y]; if(rank[x]>rank[y]) return par[x]=y; rank[x]+=rank[x]==rank[y]; return par[y]=x; } void dump(int num=um) { //グループ分けした配列を作る int i; FOR(i,num) G[i].clear(); FOR(i,num) G[operator[](i)].push_back(i); } }; UF<101010> uf; vector<pair<int,int>> E[101010]; int P[21][200005],D[200005],M[21][200005]; void dfs(int cur,int pre) { P[0][cur]=pre; FORR2(e,c,E[cur]) { if(e!=pre) { D[e]=D[cur]+1; dfs(e,cur); } else { M[0][cur]=c; } } } int getpar(int cur,int up) { int i; FOR(i,20) if(up&(1<<i)) cur=P[i][cur]; return cur; } int lca(int a,int b) { int ret=0,i,aa=a,bb=b; if(D[aa]>D[bb]) swap(aa,bb); for(i=19;i>=0;i--) if(D[bb]-D[aa]>=1<<i) bb=P[i][bb]; for(i=19;i>=0;i--) if(P[i][aa]!=P[i][bb]) aa=P[i][aa], bb=P[i][bb]; return (aa==bb)?aa:P[0][aa]; // vertex } void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>K>>C; vector<pair<int,int>> Es; FOR(i,K) { cin>>U[i]>>V[i]>>W[i]>>val[i]; Es.push_back({W[i],i}); } sort(ALL(Es)); ll sum=0; FORR2(a,i,Es) { if(uf[U[i]]!=uf[V[i]]) { sum+=a; E[U[i]].push_back({V[i],W[i]}); E[V[i]].push_back({U[i],W[i]}); uf(U[i],V[i]); } } dfs(0,0); FOR(i,19) FOR(x,N) { P[i+1][x]=P[i][P[i][x]]; M[i+1][x]=max(M[i][x],M[i][P[i][x]]); } ll ret=-1; FOR(i,K) { x=U[i],y=V[i]; int lc=lca(x,y); int ma=0; FOR(j,19) { if((D[x]-D[lc])&(1<<j)) { ma=max(ma,M[j][x]); x=P[j][x]; } if((D[y]-D[lc])&(1<<j)) { ma=max(ma,M[j][y]); y=P[j][y]; } } if(sum-ma+W[i]<=C) ret=max(ret,val[i]); } cout<<ret<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }