답안 #1100987

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1100987 2024-10-15T07:42:12 Z NoMercy 사이버랜드 (APIO23_cyberland) C++17
0 / 100
23 ms 6984 KB
#include <bits/stdc++.h>
using namespace std;
 
const int inf = 1e9 + 99;
 
double solve(int N, int M, int K, int H, std::vector<int> x, std::vector<int> y, std::vector<int> c, std::vector<int> arr) {
    vector<array<int, 2>> g[N + 1];
    for (int i = 0;i < M;i ++) {
        g[x[i]].push_back({y[i], c[i]});
        g[y[i]].push_back({x[i], c[i]});
    }
 
    vector<int> dp(N + 1, inf);
    dp[0] = 0;
    multiset<array<int, 2>> ms;
    ms.insert({0, 0});
    while (ms.size() > 0) {
        auto it = *ms.begin();
        ms.erase(ms.begin());
        if (it[1] == H) continue;
        for (auto [v, w] : g[it[1]]) if (dp[v] > (arr[v] == 0 ? 0 : it[0] + w)) {
            dp[v] = (arr[v] == 0 ? 0 : it[0] + w);
            ms.insert({dp[v], v});
        }
    }
    return (dp[H] == inf ? -1 : dp[H]);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 16 ms 848 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 13 ms 1360 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 19 ms 1360 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 20 ms 6984 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 16 ms 1360 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 23 ms 1360 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 20 ms 1360 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 21 ms 1600 KB Wrong Answer.
2 Halted 0 ms 0 KB -