QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#80619#5506. HyperloopzhouhuanyiAC ✓1251ms59200kbC++143.4kb2023-02-24 14:40:332023-02-24 14:40:37

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-02-24 14:40:37]
  • 评测
  • 测评结果:AC
  • 用时:1251ms
  • 内存:59200kb
  • [2023-02-24 14:40:33]
  • 提交

answer

#include<iostream>
#include<cstdio>
#include<queue>
#include<algorithm>
#include<vector>
#define N 100000
#define M 100
#define inf 1e9
using namespace std;
int read()
{
    char c=0;
    int sum=0;
    while (c<'0'||c>'9') c=getchar();
    while ('0'<=c&&c<='9') sum=sum*10+c-'0',c=getchar();
    return sum;
}
struct reads
{
    int num,data;
    bool operator < (const reads &t)const
    {
	return data>t.data; 
    }
};
priority_queue<reads>q;
int T,n,m,tong[N+1],length,dis[N+1],p[N+1],pv[N+1],pvt[N+1],dst[N+1],dp[N+1][M+1];
vector<reads>E[N+1];
vector<int>A;
vector<int>B;
bool used[N+1];
bool cmp(int x,int y)
{
    return x>y;
}
bool cmp2(int x,int y)
{
    return dis[x]<dis[y];
}
void dijkstra()
{
    int top;
    dis[1]=0,q.push((reads){1,0});
    while (!q.empty())
    {
	top=q.top().num,q.pop();
	if (used[top]) continue;
	used[top]=1;
	for (int i=0;i<E[top].size();++i)
	    if (dis[E[top][i].num]>dis[top]+E[top][i].data)
		dis[E[top][i].num]=dis[top]+E[top][i].data,q.push((reads){E[top][i].num,dis[E[top][i].num]});
    }
    return;
}
int main()
{
    int x,y,z,op;
    T=read();
    while (T--)
    {
	n=read(),m=read(),length=0;
	for (int i=1;i<=n;++i)
	{
	    E[i].clear(),dis[i]=inf,used[i]=pv[i]=pvt[i]=dst[i]=0;
	    for (int j=1;j<=100;++j) dp[i][j]=0;
	}
	for (int i=1;i<=m;++i) x=read(),y=read(),z=read(),E[x].push_back((reads){y,z}),E[y].push_back((reads){x,z});
	dijkstra();
	for (int i=1;i<=n;++i) p[i]=i;
	sort(p+1,p+n+1,cmp2);
	for (int i=2;i<=n;++i)
	    if (dis[p[i]]<=dis[n])
	    {
		for (int j=0;j<E[p[i]].size();++j)
		    if (dis[E[p[i]][j].num]+E[p[i]][j].data==dis[p[i]])
		    {
			if (!pv[p[i]])
			{
			    pv[p[i]]=E[p[i]][j].num;
			    for (int k=1;k<=100;++k) dp[p[i]][k]=dp[E[p[i]][j].num][k];
			    if (E[p[i]][j].data<=100) pvt[p[i]]=pvt[E[p[i]][j].num],dst[p[i]]=dst[E[p[i]][j].num],dp[p[i]][E[p[i]][j].data]++;
			    else pvt[p[i]]=E[p[i]][j].num,dst[p[i]]=E[p[i]][j].data;
			}
			else
			{
			    A.clear(),B.clear(),x=p[i];
			    while (pvt[x]) A.push_back(dst[x]),x=pvt[x];
			    x=E[p[i]][j].num;
			    while (pvt[x]) B.push_back(dst[x]),x=pvt[x];
			    if (E[p[i]][j].data>100) B.push_back(E[p[i]][j].data);
			    sort(A.begin(),A.end(),cmp),sort(B.begin(),B.end(),cmp),op=-1;
			    for (int k=0;k<min(A.size(),B.size());++k)
				if (A[k]!=B[k])
				{
				    if (A[k]>B[k])
				    {
					op=0;
					break;
				    }
				    else
				    {
					op=1;
					break;
				    }
				}
			    if (op==-1&&A.size()!=B.size()) op=(A.size()<B.size());
			    if (op==-1)
			    {
				for (int k=100;k>=1;--k)
				    if (dp[E[p[i]][j].num][k]+(k==E[p[i]][j].data)!=dp[p[i]][k])
				    {
					if (dp[E[p[i]][j].num][k]+(k==E[p[i]][j].data)>dp[p[i]][k])
					{
					    op=1;
					    break;
					}
					else
					{
					    op=0;
					    break;
					}
				    }
			    }
			    if (op==1)
			    {
				pv[p[i]]=E[p[i]][j].num;
				for (int k=1;k<=100;++k) dp[p[i]][k]=dp[E[p[i]][j].num][k];
				if (E[p[i]][j].data<=100) pvt[p[i]]=pvt[E[p[i]][j].num],dst[p[i]]=dst[E[p[i]][j].num],dp[p[i]][E[p[i]][j].data]++;
				else pvt[p[i]]=E[p[i]][j].num,dst[p[i]]=E[p[i]][j].data;
			    }
			}
		    }
	    }
	x=n,tong[++length]=n;
	while (x!=1) x=pv[x],tong[++length]=x;
	printf("%d\n",length);
	for (int i=length;i>=1;--i) printf("%d ",tong[i]);
	puts("");
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 7940kb

input:

2
4 6
1 2 1
1 3 2
2 3 1
2 4 2
3 4 1
1 4 4
6 11
1 2 9
2 3 12
3 4 3
4 5 5
5 6 10
6 1 22
2 4 9
3 6 1
4 6 5
2 5 2
3 5 8

output:

3
1 2 4 
5
1 2 5 3 6 

result:

ok correct (2 test cases)

Test #2:

score: 0
Accepted
time: 117ms
memory: 10260kb

input:

600
320 1547
204 81 13768
232 97 9939
97 249 3719
201 109 14322
183 132 40881
142 143 1
275 186 24548
18 236 7907
30 317 11845
131 130 1
311 300 11704
141 92 41925
174 191 32128
119 120 1
184 183 1
310 309 1
283 270 25477
233 141 36076
212 92 13770
307 110 40656
218 137 14033
180 85 41892
200 199 44...

output:

184
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 89 90 91 92 93 94 95 96 97 98 99 100 101 102 10...

result:

ok correct (600 test cases)

Test #3:

score: 0
Accepted
time: 338ms
memory: 59200kb

input:

4
100000 220000
48940 43355 42347
77914 77913 1
45236 82683 42904
22563 16038 34866
81537 81538 43088
49803 51485 25497
63071 25523 14336
44102 39850 43782
13607 92386 16724
98711 73651 46840
17775 16801 28765
5757 98829 13508
85095 48444 1
9198 43003 32678
14461 14462 1
20245 48742 18138
89120 8911...

output:

35000
1 24721 24696 24717 24804 24757 24988 24231 25030 24601 94061 24443 24448 24563 25096 43056 43055 43054 43053 43052 43051 43050 43049 43048 43047 43046 43045 43044 43043 43042 43041 43040 43039 43038 43037 43036 43035 43034 43033 43032 43031 43030 43029 43028 43027 43026 43025 43024 43023 4302...

result:

ok correct (4 test cases)

Test #4:

score: 0
Accepted
time: 1251ms
memory: 56444kb

input:

4
100000 160000
5533 94547 28459
14992 20984 20548
70133 92512 27510
9013 9012 304
13621 40571 47787
305 306 262
6987 6988 135
16234 16992 40656
26246 49196 27701
19103 60272 44055
91532 91531 38290
70778 68341 35147
32524 32523 13
85786 50300 40970
49277 29735 13942
43446 34519 42455
77623 17031 34...

output:

316
1 2 3 4 5 6 97410 97409 26434 26435 26436 26437 98883 1370 1369 1368 92157 92158 4815 4816 4817 4818 50181 16985 89607 89608 24674 16979 16980 38428 13232 13233 13234 13664 13663 95009 7166 7169 7168 7163 24798 24799 11787 31031 53551 7309 7310 35482 7933 25067 32714 32715 44194 2068 72216 79593...

result:

ok correct (4 test cases)

Test #5:

score: 0
Accepted
time: 368ms
memory: 56912kb

input:

4
100000 160000
89517 25671 43802
21059 21058 1
35299 91834 43615
53383 53382 1
27213 39161 17202
10715 4050 30342
44100 44099 1
24162 28648 7378
19022 23084 37734
66056 97934 14651
31566 89391 23215
91038 91037 1
47695 47696 6099
99142 99143 1
83908 73654 15060
15551 22001 8896
55190 55189 1
26536 ...

output:

632
1 94652 94659 94664 1697 31258 31267 31276 31231 99694 31227 31190 31223 91851 2489 2480 2483 98560 2507 2512 2515 2532 2529 99815 71980 74130 74129 99693 84670 84671 71536 30302 30301 30300 30299 30298 30297 30296 30295 30294 30293 30292 30291 30290 30289 30288 30287 30286 30285 26878 35089 708...

result:

ok correct (4 test cases)