結果

問題 No.1 道のショートカット
ユーザー simansiman
提出日時 2016-03-27 20:31:54
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,080 bytes
コンパイル時間 614 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 6,560 KB
最終ジャッジ日時 2023-09-22 12:41:07
合計ジャッジ時間 2,247 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 WA -
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,384 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 6 ms
6,428 KB
testcase_09 AC 4 ms
5,656 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 3 ms
4,728 KB
testcase_16 WA -
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 3 ms
4,480 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 3 ms
4,740 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
4,384 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 AC 3 ms
4,864 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 2 ms
4,380 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 1 ms
4,376 KB
testcase_43 AC 4 ms
5,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
#include <limits.h>
#include <time.h>
#include <string>
#include <string.h>
#include <sstream>
#include <set>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <stack>
#include <queue>

using namespace std;

typedef long long ll;

const int MAX_N = 51;

int dp[MAX_N][MAX_N];

int pathCost[MAX_N][MAX_N];
int pathTime[MAX_N][MAX_N];

int main(){
  int n;
  cin >> n;
  int c;
  cin >> c;
  int v;
  cin >> v;
  int s[v];
  int t[v];
  int y[v];
  int m[v];

  int dp[n+1][n+1][c+1];

  for(int i = 0; i < 4; i++){
    for(int j = 0; j < v; j++){
      if(i == 0){
        cin >> s[j];
      }else if(i == 1){
        cin >> t[j];
      }else if(i == 2){
        cin >> y[j];
      }else{
        cin >> m[j];
      }
    }
  }

  memset(pathCost, -1, sizeof(pathCost));
  memset(pathTime, -1, sizeof(pathTime));
  memset(dp, -1, sizeof(dp));

  dp[0][1][0] = 0;

  for(int i = 0; i < v; i++){
    int from = s[i];
    int to = t[i];
    int cost = y[i];
    int time = m[i];

    pathCost[from][to] = cost;
    pathTime[from][to] = time;
  }

  int minTime = INT_MAX;

  for(int step = 1; step <= n; step++){
    for(int from = 0; from <= n; from++){
      for(int cost = 0; cost <= c; cost++){
        if(dp[step-1][from][cost] >= 0){
          for(int to = 0; to <= n; to++){
            if(pathCost[from][to] > 0){
              int nextCost = cost + pathCost[from][to];
              int nextTime = dp[step-1][from][cost] + pathTime[from][to];

              if(nextCost <= c){
                if(to == n && minTime > nextTime){
                  minTime = nextTime;
                }

                if(dp[step][to][nextCost] == -1){
                  dp[step][to][nextCost] = nextTime;
                }else{
                  dp[step][to][nextCost] = min(dp[step][to][nextCost], nextTime);
                }
              }
            }
          }
        }
      }
    }
  }

  if(minTime == INT_MAX){
    cout << -1 << endl;
  }else{
    cout << minTime << endl;
  }

  return 0;
}
0