結果

問題 No.1 道のショートカット
ユーザー rantdrantd
提出日時 2015-02-28 19:44:08
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,747 bytes
コンパイル時間 1,398 ms
コンパイル使用メモリ 151,916 KB
実行使用メモリ 6,752 KB
最終ジャッジ日時 2023-09-22 12:00:33
合計ジャッジ時間 3,671 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 115 ms
6,752 KB
testcase_09 AC 66 ms
6,536 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 15 ms
5,692 KB
testcase_16 WA -
testcase_17 AC 4 ms
4,380 KB
testcase_18 AC 23 ms
6,332 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 23 ms
5,024 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 15 ms
4,516 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 4 ms
4,380 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 37 ms
5,308 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 5 ms
4,536 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 2 ms
4,376 KB
testcase_43 AC 22 ms
5,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define repu(i, begin, end) for (__typeof(begin) i = (begin) - ((begin) > (end)); i != (end) - ((begin) > (end)); i += 1 - 2 * ((begin) > (end)))
#define repe(i, begin, end) for (__typeof(begin) i = (begin); i != (end) + 1 - 2 * ((begin) > (end)); i += 1 - 2 * ((begin) > (end)))
#define mem(a, x) memset(a, x, sizeof(a))
#define all(a) a.begin(), a.end()
#define count_bits(x) __builtin_popcount(x)
#define count_bitsll(x) __builtin_popcountll(x)
#define least_bits(x) __builtin_ffs(x)
#define least_bitsll(x) __builtin_ffsll(x)
#define most_bits(x) 32 - __builtin_clz(x)
#define most_bitsll(x) 64 - __builtin_clz(x)

vector<string> split(const string &s, char c) {
	vector<string> v;
	stringstream ss(s);
	string x;
	while (getline(ss, x, c)) v.push_back(x);
	return v;
}

#define error(args...) { vector<string> _v = split(#args, ','); err(_v.begin(), args); }

void err(vector<string>::iterator it) {}

template<typename T, typename... Args>
void err(vector<string>::iterator it, T a, Args... args) {
	cerr << it -> substr((*it)[0] == ' ', it -> length()) << " = " << a << '\n';
	err(++it, args...);
}

typedef long long ll;
const int MOD = 1000000007;

template<class T> inline T tmin(T a, T b) {return (a < b) ? a : b;}
template<class T> inline T tmax(T a, T b) {return (a > b) ? a : b;}
template<class T> inline void amax(T &a, T b) {if (b > a) a = b;}
template<class T> inline void amin(T &a, T b) {if (b < a) a = b;}
template<class T> inline T tabs(T a) {return (a > 0) ? a : -a;}
template<class T> T gcd(T a, T b) {while (b != 0) {T c = a; a = b; b = c % b;} return a;}

const int MAXV = 51, MAXC = 301, INF = (int) 1E8;
int eg[MAXV][MAXV][2];
int dp[MAXV][MAXV][MAXC];
int N, C, V;

void solve() {
	repe(c, 1, C) repe(k, 1, N) repe(i, 1, N) repe(j, 1, N) {
		if (c >= eg[k][j][0] && dp[i][j][c] > dp[i][k][c - eg[k][j][0]] + eg[k][j][1]) {
			dp[i][j][c] = dp[i][k][c - eg[k][j][0]] + eg[k][j][1];
		}
	}
}

int main(int argc, char *argv[]) {
    ios_base::sync_with_stdio(false);
    int s[1501], t[1501], y[1501], m[1501];

    cin >> N >> C >> V;
    repu(i, 0, V) cin >> s[i];
    repu(i, 0, V) cin >> t[i];
    repu(i, 0, V) cin >> y[i];
    repu(i, 0, V) cin >> m[i];
    
    repe(i, 1, N) repe(j, 1, N) {
    	eg[i][j][0] = eg[i][j][1] = INF;
    }

    repe(i, 1, N) eg[i][i][0] = eg[i][i][1] = 0;

    repe(i, 1, N) repe(j, 1, N) repe(c, 0, C) dp[i][j][c] = INF;
    
    repe(i, 1, N) dp[i][i][0] = 0;

    repu(i, 0, V) {
    	eg[s[i]][t[i]][0] = eg[t[i]][s[i]][0] = y[i];
    	eg[s[i]][t[i]][1] = eg[t[i]][s[i]][1] = m[i];
    }

    solve();
    int ans = INF;
    repe(i, 0, C) amin(ans, dp[1][N][i]);
    if (ans == INF) ans = -1;
    printf("%d\n", ans);

    return 0;
}
0