結果
| 問題 |
No.1 道のショートカット
|
| コンテスト | |
| ユーザー |
Lay_ec
|
| 提出日時 | 2014-11-02 08:44:51 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,262 bytes |
| コンパイル時間 | 524 ms |
| コンパイル使用メモリ | 75,804 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-08 03:34:20 |
| 合計ジャッジ時間 | 1,603 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 11 WA * 29 |
ソースコード
#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <algorithm>
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <functional>
#include <set>
#include <sstream>
#include <cctype>
using namespace std;
#define MP make_pair
typedef unsigned long long ULL;
long d[100][100];
long cost[100][100];
int n;
int main(){
int c,v;
cin>>n>>c>>v;
vector<long> s(v),t(v),y(v),m(v);
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
if(i==j) d[i][j]=cost[i][j]=0;
else d[i][j]=cost[i][j]=99999;
}
}
for(int i=0;i<v;i++) cin>>s[i];
for(int i=0;i<v;i++) cin>>t[i];
for(int i=0;i<v;i++) cin>>y[i];
for(int i=0;i<v;i++) cin>>m[i];
for(int i=0;i<v;i++){
d[s[i]-1][t[i]-1]=d[t[i]-1][s[i]-1]=m[i];
cost[s[i]-1][t[i]-1]=cost[t[i]-1][s[i]-1]=y[i];
}
for(int k=0;k<n;k++){
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
// d[i][j]=min(d[i][j],d[i][k]+d[k][j]);
if(d[i][j]>d[i][k]+d[k][j] && cost[0][i]+cost[i][k]+cost[k][j]<=c){
d[i][j]=d[i][k]+d[k][j];
cost[0][k]=cost[0][i]+cost[i][k];
cost[0][j]=cost[0][k]+cost[k][j];
}
}
}
}
if(d[0][n-1]==99999) d[0][n-1]=-1;
cout<<d[0][n-1]<<endl;
return 0;
}
Lay_ec