結果
問題 | No.1 道のショートカット |
ユーザー | scrive66 |
提出日時 | 2015-06-09 15:50:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 4,309 bytes |
コンパイル時間 | 798 ms |
コンパイル使用メモリ | 97,012 KB |
実行使用メモリ | 77,824 KB |
最終ジャッジ日時 | 2024-07-08 04:05:44 |
合計ジャッジ時間 | 7,251 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
// Header {{{ // includes {{{ #include <algorithm> #include <cassert> #include <cctype> #include <climits> #include <cmath> #include <complex> #include <cstdio> #include <cstdlib> #include <cstring> #include <ctime> #include <iostream> #include <iterator> #include <limits> #include <list> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <vector> // }}} using namespace std; // consts {{{ static const int INF = 1e9; static const double PI = acos(-1.0); static const double EPS = 1e-10; // }}} // typedefs {{{ typedef long long int LL; typedef unsigned long long int ULL; typedef vector<int> VI; typedef vector<VI> VVI; typedef vector<LL> VLL; typedef vector<VLL> VVLL; typedef vector<ULL> VULL; typedef vector<VULL> VVULL; typedef vector<double> VD; typedef vector<VD> VVD; typedef vector<bool> VB; typedef vector<VB> VVB; typedef vector<char> VC; typedef vector<VC> VVC; typedef vector<string> VS; typedef vector<VS> VVS; typedef pair<int, int> PII; typedef complex<int> P; // }}} // macros & inline functions {{{ // syntax sugars {{{ #define FOR(i, b, e) for (int i = (b); i < (e); ++i) #define FORI(i, b, e) for (int i = (b); i <= (e); ++i) #define RFOR(i, b, e) for (int i = (b); i > (e); --i) #define RFORI(i, b, e) for (int i = (b); i >= (e); --i) #define REP(i, n) FOR(i, 0, n) #define REPI(i, n) FORI(i, 0, n) #define RREP(i, n) RFOR(i, n, 0) #define RREPI(i, n) RFORI(i, n, 0) #define OPOVER(_op, _type) inline bool operator _op (const _type &t) const // }}} // conversion {{{ inline int toInt(string s) { int v; istringstream sin(s); sin >> v; return v; } template<class T> inline string toString(T x) { ostringstream sout; sout << x; return sout.str(); } // }}} // array and STL {{{ #define ARRSIZE(a) ( sizeof(a) / sizeof(a[0]) ) #define F first #define S second #define MP(a, b) make_pair(a, b) #define PB(e) push_back(e) #define SORT(v) sort((v).begin(), (v).end()) #define RSORT(v) sort((v).rbegin(), (v).rend()) #define ALL(a) (a).begin(), (a).end() #define RALL(a) (a).rbegin(), (a).rend() #define EXIST(s, e) ((s).find(e) != (s).end()) // }}} // for readable code {{{ #define EVEN(n) (n % 2 == 0) #define ODD(n) (!EVEN(n)) // }}} // string manipulation {{{ inline VS split(string s, char delimiter) { VS v; string t; REP(i, s.length()) { if (s[i] == delimiter) v.PB(t), t = ""; else t += s[i]; } v.PB(t); return v; } inline string join(VS s, string j) { string t; REP(i, s.size()) { t += s[i] + j; } return t; } // }}} // geometry {{{ #define Y real() #define X imag() // }}} // 2 dimentional array {{{ P dydx4[4] = { P(-1, 0), P(0, 1), P(1, 0), P(0, -1) }; P dydx8[8] = { P(-1, 0), P(0, 1), P(1, 0), P(0, -1), P(-1, 1), P(1, 1), P(1, -1), P(-1, -1) }; int g_height, g_width; bool in_field(P p) { return (0 <= p.Y && p.Y < g_height) && (0 <= p.X && p.X < g_width); } // }}} // }}} #define PRINT(s) sout << (s) << endl int cityNum, handMoney, edgeNum; struct edge { int cityfrom; int cityto; int cost; int time; OPOVER(< , edge) { return ((cityfrom != t.cityfrom) ? (cityfrom < t.cityfrom) : (cityto < t.cityto)); } }; vector<edge> edges; struct route { int cost; int time; route(int c, int t) :cost(c), time(t) {} OPOVER(< , route) { return ((time != t.time) ? (time < t.time) : (cost < t.cost)); } }; vector<route> routes; inline void calc(int pos, int cost, int time) { REP(i, edgeNum) { int from = edges[i].cityfrom; if (from < pos) { continue; } else if (from > pos) { break; } int to = edges[i].cityto; if (to == cityNum) { routes.emplace_back(cost + edges[i].cost, time + edges[i].time); } else { calc(to, cost + edges[i].cost, time + edges[i].time); } } } int main(int argc, char** argv) { cin.tie(0); ios::sync_with_stdio(false); cin >> cityNum >> handMoney >> edgeNum; edges.resize(edgeNum); REP(i, edgeNum) { cin >> edges[i].cityfrom; } REP(i, edgeNum) { cin >> edges[i].cityto; } REP(i, edgeNum) { cin >> edges[i].cost; } REP(i, edgeNum) { cin >> edges[i].time; } sort(ALL(edges)); calc(1, 0, 0); sort(ALL(routes)); int size = routes.size(); REP(i, size) { if (routes[i].cost > handMoney) { continue; } else { cout << routes[i].time << endl; return 0; } } cout << -1 << endl; return 0; }