QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#68522#5102. Dungeon Crawlernocriz#TL 3807ms270824kbC++172.1kb2022-12-16 23:19:172022-12-16 23:19:21

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-12-16 23:19:21]
  • 评测
  • 测评结果:TL
  • 用时:3807ms
  • 内存:270824kb
  • [2022-12-16 23:19:17]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
struct node
{
	ll x,w;
	node(ll nx=0,ll nw=0){x=nx;w=nw;}
};
vector<node>se[2005];
vector<int>s[2005];
ll dep[2005][2005],mx[2005];
int depi[2005][2005],vis[2005];
int dfn[2005][2005],ed[2005][2005];
int f[2005][12][2005],fr[2005];
int n,q,st,k,t,cnt=0,rt,c;
ll sum=0,ans=0;
int fa(int a,int b)
{
	if(depi[rt][a]>depi[rt][b])swap(a,b);
	for(int i=11;i>=0;i--)if(depi[rt][f[rt][i][b]]>=depi[rt][a])b=f[rt][i][b];
	if(a==b)return a;
	for(int i=11;i>=0;i--)if(f[rt][i][a]!=f[rt][i][b])a=f[rt][i][a],b=f[rt][i][b];
	return f[rt][0][a];
}
void dfs(int p,int ff)
{
	f[rt][0][p]=ff;
	dfn[rt][p]=ed[rt][p]=++cnt;
	for(int i=0;i<se[p].size();i++)
	{
		node v=se[p][i];
		if(v.x==ff)continue;
		dep[rt][v.x]=dep[rt][p]+v.w;
		depi[rt][v.x]=depi[rt][p]+1;
		dfs(v.x,p);
		ed[rt][p]=ed[rt][v.x];
	}
}
void dfs2(int p,int ff)
{
	fr[p]=fr[ff];
	if(vis[p])fr[p]=p;
	if(fr[p]==0)ans=min(ans,sum-dep[rt][p]);
	else
	{
		ans=min(ans,sum-dep[rt][p]+2*(dep[rt][fr[p]]-dep[rt][c]));
	}
	for(int i=0;i<s[p].size();i++)
		{
			int v=s[p][i];
			if(v==ff)continue;
			//dep[rt][v.x]=dep[rt][p]+v.w;
			//depi[rt][v.x]=depi[rt][p]+1;
			dfs2(v,p);
			//ed[rt][p]=ed[rt][v.x];
		}
}
int main()
{
	scanf("%d%d",&n,&q);
	for(int i=1;i<n;i++)
	{
		int x,y,z;
		scanf("%d%d%d",&x,&y,&z);
		sum+=z;
		se[x].push_back(node(y,z));
		se[y].push_back(node(x,z));
		s[x].push_back(y);
		s[y].push_back(x);
	}
	sum=2ll*sum;
	for(int i=1;i<=n;i++)
	{
		cnt=0;rt=i;
		dep[i][i]=0;
		depi[i][i]=0;
		//f[i][0][i]=i;
		dfs(i,i);
		for(int j=1;j<12;j++)for(int k=1;k<=n;k++)f[i][j][k]=f[i][j-1][f[i][j-1][k]];
		for(int j=1;j<=n;j++)mx[rt]=max(mx[rt],dep[rt][j]);
	}
	for(int i=1;i<=q;i++)
	{
		scanf("%d%d%d",&st,&k,&t);
		rt=st;
		c=fa(k,t);
		if(c==k)printf("%lld\n",sum-mx[st]);
		else if(c==t)printf("impossible\n");
		else
		{
			memset(vis,0,sizeof(vis));
			for(int j=k;j!=c;j=f[rt][0][j])vis[j]=1;
			ans=sum;
			fr[st]=0;
			dfs2(rt,0);
			printf("%lld\n",ans);
		}
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 5ms
memory: 14448kb

input:

22 5
1 2 7
2 3 5
3 4 8
3 6 6
3 7 3
2 5 6
5 8 2
8 9 11
2 10 16
1 11 12
11 12 4
11 13 9
1 14 25
14 15 4
15 16 5
15 17 6
15 18 1
15 19 8
14 20 7
20 21 9
20 22 17
1 19 9
1 9 19
1 8 9
1 9 8
2 22 11

output:

316
293
293
impossible
314

result:

ok 5 lines

Test #2:

score: 0
Accepted
time: 4ms
memory: 26548kb

input:

100 100
1 2 289384
2 3 930887
2 4 692778
4 5 636916
4 6 747794
4 7 238336
4 8 885387
8 9 760493
8 10 516650
8 11 641422
8 12 202363
8 13 490028
8 14 368691
8 15 520060
8 16 897764
16 17 513927
16 18 180541
16 19 383427
16 20 89173
16 21 455737
16 22 5212
16 23 595369
16 24 702568
16 25 956430
16 26 ...

output:

103526917
103484292
106288816
104379596
104405611
104775512
105434682
105291604
103838430
105371370
104677980
104175650
105894571
104509242
103971939
105376499
105223283
104153426
105082245
105413188
104130613
104800548
106846555
104138329
103769253
105456754
104044745
104385328
106973740
105460460
...

result:

ok 100 lines

Test #3:

score: 0
Accepted
time: 2ms
memory: 14332kb

input:

10 6
1 2 4
2 3 7
2 4 8
4 5 6
4 6 4
4 7 6
4 8 7
8 9 3
8 10 10
3 8 1
10 4 7
1 7 3
7 2 9
8 10 3
4 1 6

output:

99
78
97
87
88
93

result:

ok 6 lines

Test #4:

score: 0
Accepted
time: 2ms
memory: 12560kb

input:

10 9
9 2 5
9 1 6
9 4 97
9 7 2
9 8 42
9 10 11
9 6 77
9 3 14
9 5 9
4 7 10
7 3 8
8 7 9
1 4 8
10 7 4
7 1 2
10 1 5
10 7 2
8 4 10

output:

352
427
impossible
443
418
427
418
418
407

result:

ok 9 lines

Test #5:

score: 0
Accepted
time: 2ms
memory: 14216kb

input:

9 9
2 3 48
9 5 31
7 3 97
4 3 16
1 7 24
5 3 82
8 2 51
6 4 33
1 2 8
3 6 8
1 6 3
9 5 6
2 6 4
5 6 1
9 6 4
2 8 9
4 9 2

output:

530
643
impossible
530
impossible
561
impossible
595
627

result:

ok 9 lines

Test #6:

score: 0
Accepted
time: 2ms
memory: 12288kb

input:

8 9
1 7 51
7 6 86
2 3 62
8 4 72
5 6 17
4 1 75
3 1 41
2 3 7
5 8 4
6 1 3
8 6 2
4 2 7
8 5 6
2 1 5
7 1 6
6 7 8

output:

551
impossible
524
558
579
impossible
551
705
524

result:

ok 9 lines

Test #7:

score: 0
Accepted
time: 0ms
memory: 16496kb

input:

9 9
5 4 13
9 2 10
1 9 25
7 6 34
4 2 77
3 8 67
8 1 57
6 9 100
6 4 1
4 1 7
3 2 9
4 9 7
7 9 3
6 2 1
2 8 4
8 6 2
6 5 9

output:

517
545
impossible
530
483
517
642
584
impossible

result:

ok 9 lines

Test #8:

score: 0
Accepted
time: 4ms
memory: 14500kb

input:

10 10
2 4 26
9 8 39
4 5 88
6 3 70
7 6 7
10 4 41
8 3 57
1 6 15
5 6 9
2 8 6
3 9 1
5 7 8
4 7 8
7 6 4
2 7 3
6 8 2
5 4 10
4 8 9
1 5 9

output:

impossible
496
529
441
531
415
566
529
441
523

result:

ok 10 lines

Test #9:

score: 0
Accepted
time: 0ms
memory: 14172kb

input:

10 9
3 2 6
2 1 18
8 1 44
1 9 42
6 3 72
10 8 46
7 10 93
5 3 11
4 10 13
7 3 1
8 2 5
7 5 4
5 10 8
3 1 4
6 4 3
10 1 6
5 10 8
2 10 4

output:

impossible
550
584
impossible
483
impossible
504
impossible
489

result:

ok 9 lines

Test #10:

score: 0
Accepted
time: 3807ms
memory: 270784kb

input:

2000 199998
126 244 481188299
718 1159 740107180
1327 1250 248943862
977 1092 780169400
826 27 932696654
1668 638 478193038
229 174 176675890
1251 646 843918836
102 1973 593920932
236 218 165399894
760 151 890198591
232 502 10739184
1961 1409 45917915
548 1840 974742709
1096 630 280975617
1110 1048 ...

output:

1266421864327
impossible
1003453161105
1017793822920
1056758437569
impossible
1249128162612
1233756636475
1354563020262
1275484665657
impossible
impossible
1644448395794
impossible
impossible
impossible
1305598243001
1730425595360
1090858373772
1180211385304
1235543994987
1894692656465
impossible
12...

result:

ok 199998 lines

Test #11:

score: 0
Accepted
time: 3064ms
memory: 270824kb

input:

1999 199999
1233 1172 270406027
1233 238 118916774
1233 902 452751000
1233 1868 96683385
1233 605 546735354
1233 82 679125014
1233 1132 938320209
1233 1424 561568050
1233 113 835230774
1233 330 63962348
1233 1758 986726048
1233 1006 214588798
1233 88 433116365
1233 1122 412164831
1233 1496 846865689...

output:

1993724469968
1993337272038
1993488034133
1993680602118
1993694627446
1994104485073
1994062829494
1993917179450
1993435921379
1993814292350
1993428850371
1993220985867
1993782751870
1994075401526
1993846887971
1994090631242
1993936573248
1993321397280
1993351664812
1993207502090
1994025398060
199385...

result:

ok 199999 lines

Test #12:

score: -100
Time Limit Exceeded

input:

1998 200000
1348 321 767897262
732 563 244247276
1747 898 143621738
952 79 216678072
693 645 383457558
1061 1084 597211706
1068 1108 69631436
1493 1279 46833316
370 83 741751233
668 234 400581789
1254 807 277405261
246 71 317177072
1778 1307 117275225
1679 1090 454166908
423 1563 270094514
130 1297 ...

output:

1975372410410
1975372410410
1975935828356
1973304488995
1973667551620
1975779404141
1976066886120
1976572750087
1975072593898
1977014789030
1976101190261
1974138271828
1976530258945
1973684336396
1974554366471
1975605779407
1976303286574
1973805733832
1976072007649
1976514431746
1975901590393
197654...

result: