結果

問題 No.1 道のショートカット
ユーザー minamiminami
提出日時 2019-04-05 05:47:28
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,514 bytes
コンパイル時間 1,583 ms
コンパイル使用メモリ 168,600 KB
最終ジャッジ日時 2023-09-22 13:28:54
合計ジャッジ時間 1,989 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp:41:18: エラー: non-local lambda expression cannot have a capture-default
   41 | auto dijkstra = [&](const Graph &g, int s, Array &dist) {
      |                  ^

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#ifdef _DEBUG
#include "dump.hpp"
#else
#define dump(...)
#endif

//#define int long long
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(b)-1;i>=(a);i--)
#define all(c) begin(c),end(c)
const int INF = sizeof(int) == sizeof(long long) ? 0x3f3f3f3f3f3f3f3fLL : 0x3f3f3f3f;
const int MOD = 1'000'000'007;
template<class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; }
template<class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return true; } return false; }

using Weight = int;
struct Edge {
	int s, d; Weight w;
	Edge() {};
	Edge(int s, int d, Weight w) : s(s), d(d), w(w) {};
};
bool operator<(const Edge &e1, const Edge &e2) { return e1.w < e2.w; }
bool operator>(const Edge &e1, const Edge &e2) { return e2 < e1; }
inline ostream &operator<<(ostream &os, const Edge &e) { return (os << '(' << e.s << ", " << e.d << ", " << e.w << ')'); }

using Edges = vector<Edge>;
using Graph = vector<Edges>;
using Array = vector<Weight>;
using Matrix = vector<Array>;

void addArc(Graph &g, int s, int d, Weight w = 1) {
	g[s].emplace_back(s, d, w);
}
void addEdge(Graph &g, int a, int b, Weight w = 1) {
	addArc(g, a, b, w);
	addArc(g, b, a, w);
}

auto dijkstra = [&](const Graph &g, int s, Array &dist) {
	int n = g.size();
	vector<bool> vis(n);
	vector<int> prev(n, -1);
	dist.assign(n, INF); dist[s] = 0;
	using State = tuple<Weight, int, int>;
	priority_queue<State, vector<State>, greater<State>> pq;
	pq.emplace(0, s, -1);
	while (pq.size()) {
		Weight d; int v, p; tie(d, v, p) = pq.top(); pq.pop();
		if (dist[v] < d)continue;
		vis[v] = true;
		prev[v] = p;
		for (auto &e : g[v]) {
			if (vis[e.d])continue;
			if (dist[e.d] > dist[v] + e.w) {
				dist[e.d] = dist[v] + e.w;
				pq.emplace(dist[e.d], e.d, v);
			}
		}
	}
	return prev;
};



signed main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	int N, C, V; cin >> N >> C >> V;
	vector<int> S(V); rep(i, 0, V) {
		cin >> S[i];
		S[i]--;
	}

	vector<int> T(V); rep(i, 0, V) {
		cin >> T[i];
		T[i]--;
	}
	vector<int> Y(V); rep(i, 0, V) {
		cin >> Y[i];
	}
	vector<int> M(V); rep(i, 0, V) {
		cin >> M[i];
	}
	Graph g(N * (C + 1));
	rep(i, 0, V) {
		rep(j, 0, C + 1) {
			if (Y[i] + j > C)break;
			addArc(g, (C + 1)*S[i] + j, (C + 1)*T[i] + Y[i] + j, M[i]);
		}
	}
	Array dist;
	dijkstra(g, 0, dist);
	int ans = INF;
	rep(i, 0, C + 1) {
		chmin(ans, dist[(C + 1)*(N - 1) + i]);
	}
	cout << (ans == INF ? -1 : ans) << endl;
	return 0;
}
0