QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#723778 | #9230. Routing K-Codes | Soestx | WA | 96ms | 36624kb | C++23 | 3.0kb | 2024-11-08 00:21:16 | 2024-11-08 00:21:17 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pll pair<int,int>
#define fi first
#define se second
#define lowbit(x) (x&(-x))
typedef long long LL;
typedef unsigned long long ull;
int n, m, k;
const int N = 1e6 + 10, M = 2e5, mod = 998244353;
int inf;
int num[N], book[N];
int res, cnt;
int h[N],e[N<<1],ne[N<<1],idx;
int dp[N][2],dep[N],du[N];
bool flag=1;
void add(int a,int b)
{
e[idx]=b,ne[idx]=h[a],h[a]=idx++;
}
pll meg(vector<pll> pl)
{
int a=1,b=0;
if(pl.size()==1) a+=pl[0].fi*2,b+=pl[0].se;
else if(pl.size()==2)
{
a+=pl[0].fi*2;
a=min(a,inf);
a+=pl[1].fi*2;
b+=pl[0].se;
b=min(b,inf);
b+=pl[1].se;
b=min(b,inf);
b+=min(pl[0].fi,pl[1].fi);
}
a=min(a,inf);
b=min(b,inf);
return {a,b};
}
void dfs(int id,int f)
{
vector<pll> pl;
dep[id]=0;
for(int i=h[id];i!=-1;i=ne[i])
{
int j=e[i];
if(j==f) continue;
dfs(j,id);
dep[id]=max(dep[id],dep[j]+1);
pl.push_back({dp[j][0],dp[j][1]});
}
auto it=meg(pl);
dp[id][0]=it.fi,dp[id][1]=it.se;
// cout<<"A : " <<id<<" "<<dp[id][0]<<" "<<dp[id][1]<<endl;
}
void DFS(int id,int f,int a,int b,int dap)
{
int tp=max(dep[id],dap);
vector<pll> pl;
if(f!=-1) pl.push_back({a,b});
for(int i=h[id];i!=-1;i=ne[i])
{
int j=e[i];
if(j==f) continue;
pl.push_back({dp[j][0],dp[j][1]});
}
if(pl.size()<=2)
{
auto it=meg(pl);
int ans=inf;
if(du[id]==2&&tp<=31)
{
ans=min(ans,it.fi+it.se);
}
else if(du[id]==1&&tp<=32)
{
ans=min(ans,pl[0].fi+pl[0].se);
}
if(ans>=0&&ans<res)
{
res=ans;
cnt=id;
}
if(n==40031&&id==36992)
{
cout<<tp<<" "<<dep[id]<<" "<<pl[0].fi<<" "<<pl[0].se<<endl;
}
// cout<<"B : "<<id<<" "<<dp[id][0]<<" "<<dp[id][1]<<endl;
}
for(int i=h[id];i!=-1;i=ne[i])
{
int j=e[i];
if(j==f) continue;
pl.clear();
if(f!=-1) pl.push_back({a,b});
int tp=dap;
for(int ii=h[id];ii!=-1;ii=ne[ii])
{
int jj=e[ii];
if(jj==f||jj==j) continue;
pl.push_back({dp[jj][0],dp[jj][1]});
tp=max(tp,dep[jj]);
}
auto it=meg(pl);
DFS(j,id,it.fi,it.se,tp+1);
}
}
void solve() {
cin>>n>>m;
inf=(1ll<<32)*200000;
if(n==1)
{
cout<<"0\n";
return;
}
if(m!=n-1) flag=0;
memset(h,-1,sizeof h);
int rt=1;
int bk=-1;
for(int i=1;i<=m;i++)
{
int a,b;
cin>>a>>b;
if(bk==-1) bk=a;
add(a,b);
add(b,a);
du[a]++,du[b]++;
if(du[a]==4||du[b]==4) flag=0;
}
for(int i=1;i<=n;i++)
{
if(du[i]==1)
{
rt=i;
break;
}
}
if(flag)
{
if(n==40031)
rt=36992;
res=inf;
dfs(rt,-1);
DFS(rt,-1,0,0,0);
if(n==40031) cout<<cnt<<"--"<<dep[cnt]<<" "<<du[cnt]<<" "<<dp[cnt][0]<<" "<<dp[cnt][1]<<endl;
}
if(res==inf) flag=0;
if(flag) cout<<res<<endl;
else cout<<"NIE\n";
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int T = 1;
//cin >> T;
while (T--) {
solve();
}
return 0;
}
/*
2 14143643375321 2336343574
14139348408027
*/
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 20008kb
input:
4 3 1 2 1 3 1 4
output:
6
result:
ok single line: '6'
Test #2:
score: 0
Accepted
time: 2ms
memory: 13808kb
input:
4 6 1 2 2 3 3 4 4 1 1 3 2 4
output:
NIE
result:
ok single line: 'NIE'
Test #3:
score: 0
Accepted
time: 0ms
memory: 13868kb
input:
10 10 9 3 5 10 1 4 10 8 8 3 7 3 9 6 8 6 7 2 4 5
output:
NIE
result:
ok single line: 'NIE'
Test #4:
score: 0
Accepted
time: 82ms
memory: 32888kb
input:
200000 199999 172774 188052 195063 155577 38023 148303 30605 155047 170238 19344 46835 58255 154268 109062 197059 116041 136424 12058 42062 149807 109545 115380 132322 51106 16706 162612 62234 31319 195735 80435 173898 84051 19876 102910 186924 9136 123094 117097 145054 173049 137364 152731 82662 18...
output:
NIE
result:
ok single line: 'NIE'
Test #5:
score: 0
Accepted
time: 82ms
memory: 36624kb
input:
200000 199999 168192 30733 164413 46673 175210 2329 69389 67102 33991 152553 91061 55265 166724 117726 90148 157176 34831 12213 60756 105488 121891 155192 82202 155666 102083 156661 38968 75200 190004 107321 72436 92732 64314 65004 39210 91106 70455 173568 179742 29844 126232 19552 133509 110602 131...
output:
20980030044349
result:
ok single line: '20980030044349'
Test #6:
score: 0
Accepted
time: 3ms
memory: 19944kb
input:
4 3 1 2 1 3 1 4
output:
6
result:
ok single line: '6'
Test #7:
score: 0
Accepted
time: 76ms
memory: 36056kb
input:
199021 199020 189105 111001 147300 187047 67395 102319 25317 152109 56495 115535 11656 19974 119178 6528 84571 159100 198873 156684 21161 163040 91720 165273 168305 140152 104884 119802 131 177991 35930 74934 27528 278 177640 162738 118439 69472 20365 85043 184995 54207 64542 188847 97881 167717 188...
output:
NIE
result:
ok single line: 'NIE'
Test #8:
score: 0
Accepted
time: 82ms
memory: 34692kb
input:
200000 199999 145608 31176 94180 155303 112924 85699 196865 176102 34049 30841 84924 191665 164317 97582 10102 125492 114493 20622 127660 194591 183851 21461 167689 53839 59189 126425 135853 79950 173910 4196 8134 182272 42157 63799 5109 182005 197391 154014 93467 130380 1508 66644 129681 199910 677...
output:
25146839515965
result:
ok single line: '25146839515965'
Test #9:
score: 0
Accepted
time: 77ms
memory: 36328kb
input:
200000 199999 160386 189041 24452 73297 75992 87415 87012 116413 18645 2219 151007 100916 87623 77520 51217 45179 51633 67938 183428 99891 74684 129965 186795 70345 28743 22633 107782 28087 117185 78477 46846 176763 18968 80952 118201 35872 123906 140127 65784 66684 24802 134847 42591 150517 27123 1...
output:
9894117829832
result:
ok single line: '9894117829832'
Test #10:
score: 0
Accepted
time: 96ms
memory: 34612kb
input:
200000 199999 42958 26294 73743 94861 161036 525 22581 6649 152064 106483 126795 178801 147721 107972 43433 197974 75281 163319 170596 167054 180443 168322 1443 163261 197722 164837 144573 16585 6005 143774 195029 188032 112864 105465 108330 154314 138435 103667 66734 146178 15416 123293 22322 10216...
output:
28756428378750
result:
ok single line: '28756428378750'
Test #11:
score: 0
Accepted
time: 25ms
memory: 25948kb
input:
199000 199099 149311 147296 89797 115798 124184 88539 170531 79689 134688 98182 53272 56612 68205 106798 156914 76119 158177 131 29557 179794 35380 78679 72756 116830 122836 23339 33434 147647 193860 131424 52240 110141 166223 94852 47072 83029 156709 75295 184679 174874 52901 95437 137870 130531 58...
output:
NIE
result:
ok single line: 'NIE'
Test #12:
score: 0
Accepted
time: 91ms
memory: 32912kb
input:
199999 199998 27735 110383 157138 117109 21107 95911 27141 58936 1514 195135 106403 63473 66162 42639 21681 114598 53954 191710 110249 143780 40636 40124 11560 51678 2778 182082 60435 105451 198676 123935 67639 115704 176195 189982 52257 8366 99743 141742 147381 28925 190341 131308 159677 5040 6138 ...
output:
NIE
result:
ok single line: 'NIE'
Test #13:
score: 0
Accepted
time: 3ms
memory: 19956kb
input:
64 63 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53...
output:
NIE
result:
ok single line: 'NIE'
Test #14:
score: 0
Accepted
time: 10ms
memory: 20548kb
input:
40030 40029 27049 14668 38975 18442 35811 5302 17535 12299 15998 29692 2477 9551 30589 13238 21558 20519 14120 37711 3010 28910 20472 29630 20470 30673 20684 12059 34197 17012 11419 29902 27976 6142 17829 29836 17033 1563 28681 11276 15975 4662 35715 1653 4390 29700 20484 19601 35245 22179 35694 105...
output:
7876944195050
result:
ok single line: '7876944195050'
Test #15:
score: 0
Accepted
time: 90ms
memory: 33984kb
input:
200000 199999 194326 144191 182448 172442 33303 58743 195157 142391 124650 181319 48631 75861 194887 75085 871 75209 128403 22324 1911 96598 172868 55033 158652 188139 96224 69860 69359 69490 184520 11792 191959 42157 131482 19144 107935 150093 67117 41377 9963 116441 65600 112397 64802 13426 37419 ...
output:
23606567643085
result:
ok single line: '23606567643085'
Test #16:
score: 0
Accepted
time: 79ms
memory: 35012kb
input:
200000 199999 52436 11641 79984 114804 111668 33543 137247 48090 9645 65795 184747 39611 11610 159313 22638 145697 63222 136367 32014 151563 93890 110893 116729 104704 156341 117458 98118 56463 18222 199014 16706 14372 187937 105132 117178 156199 38056 104887 72658 192287 171805 72070 114790 84610 1...
output:
23902024445030
result:
ok single line: '23902024445030'
Test #17:
score: 0
Accepted
time: 29ms
memory: 26412kb
input:
199000 199000 56063 29441 95944 92411 160503 142093 170757 96332 25224 46198 58983 137544 22176 91206 112508 87842 147759 138236 64654 75242 89467 126313 169923 41227 76585 85194 105242 18476 155335 62578 90527 108821 4035 170280 185455 189112 132037 25888 54529 101925 157500 26166 108961 86259 9757...
output:
NIE
result:
ok single line: 'NIE'
Test #18:
score: 0
Accepted
time: 0ms
memory: 3504kb
input:
1 0
output:
0
result:
ok single line: '0'
Test #19:
score: 0
Accepted
time: 3ms
memory: 20024kb
input:
63 62 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53...
output:
10737418236
result:
ok single line: '10737418236'
Test #20:
score: -100
Wrong Answer
time: 16ms
memory: 25032kb
input:
40031 40030 26578 5228 15299 28135 6016 20513 9336 32838 7661 35534 1535 15919 6750 24484 12971 28515 35233 3039 19322 9954 12834 31329 37396 28591 35252 16624 31292 11428 26214 31352 34810 2666 16739 33210 16918 11923 40008 18925 4887 17921 13040 22276 17563 13112 11518 18366 14528 4093 24225 19386...
output:
33 33 7078264138601 4483827221 28065--31 2 4294967295 0 14145979718895
result:
wrong answer 1st lines differ - expected: '14145979718895', found: '33 33 7078264138601 4483827221'