2018 영하 인비테이셔널 Moving On Gym - 1022222F(3차원 플로이드 깊이 이해)
. Each city has a risk of kidnapping or robbery.
Firdaws’s home locates in the city u , and Fatinah’s home locates in the city v. Now you are asked to find the shortest path from the city u to the city v that does not pass through any other city with the risk of kidnapping or robbery higher than w
, a threshold given by Firdaws.
Input
The input contains several test cases, and the first line is a positive integer T
indicating the number of test cases which is up to 50
.
For each test case, the first line contains two integers n (1≤n≤200) which is the number of cities, and q (1≤q≤2×104) which is the number of queries that will be given. The second line contains n integers r1,r2,⋯,rn indicating the risk of kidnapping or robbery in the city 1 to n respectively. Each of the following n lines contains n integers, the j-th one in the i-th line of which, denoted by di,j, is the distance from the city i to the city j
.
Each of the following q lines gives an independent query with three integers u,v and w
, which are described as above.
We guarantee that 1≤ri≤105 , 1≤di,j≤105 (i≠j), di,i=0 and di,j=dj,i. Besides, each query satisfies 1≤u,v≤n and 1≤w≤105
.
Output
For each test case, output a line containing Case #x: at first, where x is the test case number starting from 1
. Each of the following q
lines contains an integer indicating the length of the shortest path of the corresponding query.
Example Input
1
3 6
1 2 3
0 1 3
1 0 1
3 1 0
1 1 1
1 2 1
1 3 1
1 1 2
1 2 2
1 3 2
Output
Case #1:
0
1
3
0
1
2
#include
#include
#include
#include
using namespace std;
int dp[310][310][310];
int has[310];int dan[310];
int num[310];
bool cmp(int a,int b){
return dan[a]<dan[b];
}
int main(){
int t;
int cur=1;
scanf("%d",&t);
while(t--){
int n,m;
scanf("%d%d",&n,&m);
memset(dp,0x3f3f3f3f,sizeof(dp));
int cnt=1;
for(int i=1;i<=n;i++){
scanf("%d",&dan[i]);
num[i]=i;
}
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++)
scanf("%d",&dp[i][j][0]);
sort(num+1,num+1+n,cmp);
for(int k=1;k<=n;k++){
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
dp[i][j][k]=min(dp[i][j][k-1],dp[i][num[k]][k-1]+dp[num[k]][j][k-1]);
}
}
}
printf("Case #%d:
",cur++);
while(m--){
int st,ed,w;
scanf("%d%d%d",&st,&ed,&w);
int ans=0;
for(int i=1;i<=n;i++){
if(dan[num[i]]<=w) ans=i;
}
printf("%d
",dp[st][ed][ans]);
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【경쟁 프로 전형적인 90문】008의 해설(python)의 해설 기사입니다. 해설의 이미지를 봐도 모르는 (이해력이 부족한) 것이 많이 있었으므로, 나중에 다시 풀었을 때에 확인할 수 있도록 정리했습니다. ※순차적으로, 모든 문제의 해설 기사를 들어갈 예정입니다. 문자열...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.