結果
問題 | No.1545 [Cherry 2nd Tune N] Anthem |
ユーザー | scol_kp |
提出日時 | 2021-06-11 23:08:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,756 bytes |
コンパイル時間 | 2,521 ms |
コンパイル使用メモリ | 228,752 KB |
実行使用メモリ | 34,144 KB |
最終ジャッジ日時 | 2024-05-08 19:23:04 |
合計ジャッジ時間 | 14,797 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 39 ms
16,384 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 49 ms
16,768 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 55 ms
16,768 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 35 ms
15,104 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 69 ms
20,352 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 75 ms
23,252 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 3 ms
5,376 KB |
testcase_45 | RE | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | AC | 3 ms
5,376 KB |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | TLE | - |
testcase_65 | WA | - |
testcase_66 | AC | 76 ms
34,144 KB |
ソースコード
#include <bits/stdc++.h> #define FASTIO using namespace std; using ll = long long; using Vi = std::vector<int>; using Vl = std::vector<ll>; using Pii = std::pair<int, int>; using Pll = std::pair<ll, ll>; constexpr int I_INF = std::numeric_limits<int>::max(); constexpr ll L_INF = std::numeric_limits<ll>::max(); template <typename T1, typename T2> inline bool chmin(T1& a, const T2& b) { if (a > b) { a = b; return true; } return false; } template <typename T1, typename T2> inline bool chmax(T1& a, const T2& b) { if (a < b) { a = b; return true; } return false; } template <std::ostream& os = std::cout> class Prints { private: class __Prints { public: __Prints(const char* sep, const char* term) : sep(sep), term(term) {} template <class... Args> #if __cplusplus >= 201703L auto operator()(const Args&... args) const -> decltype((os << ... << std::declval<Args>()), void()) { #else void operator()(const Args&... args) const { #endif print(args...); } template <typename T> #if __cplusplus >= 201703L auto pvec(const T& vec, size_t sz) const -> decltype(os << std::declval<decltype(std::declval<T>()[0])>(), void()) { #else void pvec(const T& vec, size_t sz) const { #endif for (size_t i = 0; i < sz; i++) os << vec[i] << (i == sz - 1 ? term : sep); } template <typename T> #if __cplusplus >= 201703L auto pmat(const T& mat, size_t h, size_t w) const -> decltype(os << std::declval<decltype(std::declval<T>()[0][0])>(), void()) { #else void pmat(const T& mat, size_t h, size_t w) const { #endif for (size_t i = 0; i < h; i++) for (size_t j = 0; j < w; j++) os << mat[i][j] << (j == w - 1 ? term : sep); } private: const char *sep, *term; void print() const { os << term; } void print_rest() const { os << term; } template <class T, class... Tail> void print(const T& head, const Tail&... tail) const { os << head, print_rest(tail...); } template <class T, class... Tail> void print_rest(const T& head, const Tail&... tail) const { os << sep << head, print_rest(tail...); } }; public: Prints() {} __Prints operator()(const char* sep = " ", const char* term = "\n") const { return __Prints(sep, term); } }; Prints<> prints; Prints<std::cerr> prints_err; //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% template <typename T> struct WeightedEdge { int to; T cost; constexpr WeightedEdge(int to, T cost = -1) noexcept : to(to), cost(cost) {} }; template <typename T> using WeightedGraph = std::vector<std::vector<WeightedEdge<T>>>; void solve() { ll N, S, T, K; cin >> N >> S >> T >> K; --S, --T; Vl X(N); for (ll i = 0; i < N; i++) { cin >> X[i]; } ll M; cin >> M; WeightedGraph<ll> g(N); for (ll i = 0; i < N; i++) { ll a, b, y; cin >> a >> b >> y; --a, --b; g[a].emplace_back(b, X[b] + y); } vector dp(N, Vl(K + 1, L_INF)); vector pre(N, vector(K + 1, Pii{-1, -1})); using Tup = tuple<ll, ll, ll>; priority_queue<Tup, vector<Tup>, greater<Tup>> pq; dp[S][1] = X[S]; pq.emplace(X[S], S, 1); while (!pq.empty()) { auto [cost, u, k] = pq.top(); pq.pop(); if (dp[u][k] > cost) continue; for (auto [to, c] : g[u]) { ll nc = cost + c; ll nk = min(k + 1, K); if (dp[to][nk] > nc) { dp[to][nk] = nc; pre[to][nk] = {u, k}; pq.emplace(nc, to, nk); } } } if (dp[T][K] == L_INF) { prints()("Impossible"); return; } Vl path; { ll u_cur = T, k_cur = K; while (u_cur != -1) { path.emplace_back(u_cur); tie(u_cur, k_cur) = pre[u_cur][k_cur]; } } reverse(path.begin(), path.end()); prints()("Possible"); prints()(dp[T][K]); prints()(path.size()); for (auto u : path) { cout << u + 1 << " "; } prints()(); } //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% int main() { #ifdef FASTIO std::cin.tie(nullptr), std::cout.tie(nullptr); std::ios::sync_with_stdio(false); #endif #ifdef FILEINPUT std::ifstream ifs("./in_out/input.txt"); std::cin.rdbuf(ifs.rdbuf()); #endif #ifdef FILEOUTPUT std::ofstream ofs("./in_out/output.txt"); std::cout.rdbuf(ofs.rdbuf()); #endif std::cout << std::setprecision(18) << std::fixed; solve(); std::cout << std::flush; return 0; }