結果

問題 No.1 道のショートカット
ユーザー cympfh
提出日時 2015-12-04 15:18:44
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 2,314 bytes
コンパイル時間 1,318 ms
コンパイル使用メモリ 163,600 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 16:17:59
合計ジャッジ時間 2,197 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i=0;i<(n);++i)
#define loop for(;;)
#define trace(var) cerr<<">>> "<<#var<<" = "<<var<<endl;
#define all(v) begin(v),end(v)
#define pb push_back
#define inf (1e9)
#define eps (1e-9)
using Integer = long long;
using Real = long double;
const Real PI = acosl(-1);
using P = pair<int, int>;

template<class S, class T> inline
ostream& operator<<(ostream&os, pair<S,T> p) {
  return os << '(' << p.first << ", " << p.second << ')';
}

template<class S, class T> inline
ostream& operator<<(ostream&os, tuple<S,T> t) {
  return os << '('
    << get<0>(t) << ", "
    << get<1>(t) << ')';
}

template<class S, class T, class U> inline
ostream& operator<<(ostream&os, tuple<S,T,U> t) {
  return os << '('
    << get<0>(t) << ", "
    << get<1>(t) << ", "
    << get<2>(t) << ')';
}

template<class T> inline
ostream& operator<<(ostream&os, set<T> v) {
  os << "(set";
  for (T item: v) os << ' ' << item;
  os << ")";
  return os;
}

template<class T> inline
ostream& operator<<(ostream&os, vector<T> v) {
  if (v.size() == 0) { return os << "(empty)"; }
  os << v[0];
  for (int i=1, len=v.size(); i<len; ++i) os << ' ' << v[i];
  return os;
}

template<class T> inline
istream& operator>>(istream&is, vector<T>&v) {
  rep (i, v.size()) is >> v[i];
  return is;
}

//           ^   >  v   <
int dx[] = { -1, 0, 1,  0 };
int dy[] = {  0, 1, 0, -1 };

using vi = vector<int>;
using vvi = vector<vi>;
using vd = vector<double>;
using vvd = vector<vd>;
using vb = vector<bool>;

int table[50][301];

int main() {

  int n, c, v; cin >> n >> c >> v;
  vi ss(v), ts(v), ys(v), ms(v);
  cin >> ss >> ts >> ys >> ms;

  rep (i, v) {
    ss[i]--;
    ts[i]--;
  }

  vvi rev(n);
  rep (i, v) {
    rev[ss[i]].push_back(i);
  }

  rep (i, 50) rep (j, 301) table[i][j] = inf;
  table[0][c] = 0;

  rep (u, n) {
    rep (k, c+1) {
      if (table[u][k] == inf) continue;
      for (int i: rev[u]) {
        int v = ts[i];
        int y = ys[i]; // cost
        int m = ms[i]; // time
        if (k-y<0) continue;
        table[v][k-y] = min( table[v][k-y], table[u][k] + m);
      }
    }
  }

  int ans = -1;
  rep (k, c+1) {
    if (table[n-1][k]<inf and (ans == -1 or ans > table[n-1][k]))
      ans=table[n-1][k];
  }
  cout << ans << endl;

  return 0;
}

0