結果

問題 No.1 道のショートカット
ユーザー Lay_ecLay_ec
提出日時 2014-11-02 08:44:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,262 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-22 11:45:00
合計ジャッジ時間 2,081 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 WA -
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
4,380 KB
testcase_16 WA -
testcase_17 AC 2 ms
4,380 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
4,380 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1 ms
4,380 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 1 ms
4,376 KB
testcase_43 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0