답안 #938671

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
938671 2024-03-05T12:09:08 Z faruk Toll (BOI17_toll) C++17
0 / 100
116 ms 55124 KB
#include <bits/stdc++.h>
#define mp make_pair
#define all(a) a.begin(), a.end()

using namespace std;

typedef long long ll;
typedef pair<ll, ll> pii;

vector<vector<pii> > graph;
int k;
vector<ll> combine(vector<ll> beg, int bn, vector<ll> endd) {
    vector<ll> ans(k, 1e18);
    for (int i = 0; i < k; i++)
        for (auto &[to, w] : graph[bn * k + i])
            ans[to] = min(ans[to], beg[i] + endd[to] + w);
    return ans;
}

const int lg = 18;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);

    int n, m, q;
    cin >> k >> n >> m >> q;
    graph = vector<vector<pii> >(n + 2 * k);
    for (int i = 0; i < m; i++) {
        int f, t, p;
        cin >>f >> t >> p;
        graph[f].push_back(pii(t % k, p));
    }

    vector<vector<vector<ll> > > lift(lg, vector<vector<ll> > (n / k + 1, vector<ll>(k, 1e18)));
    int num_lay = n / k + 1;
    for (int i = 0; i < num_lay; i++)
        lift[0][i] = vector<ll>(k, 0);
    for (int bit = 1; bit < lg; bit++)
        for (int i = num_lay - (1 << bit - 1) - 1; i >= 0; i--) 
            lift[bit][i] = combine(lift[bit - 1][i], i, lift[bit - 1][i + (1 << (bit - 1))]);


    while (q--) {
        int f, t;
        cin >> f >> t;
        int SF = f / k, ST = t / k;
        vector<ll> ans(k, 1e18);
        ans[f % k] = 0;
        int diff = ST - SF;
        for (int i = 0; i < lg; i++) {
            if (((1 << i) & diff) != 0) {
                ans = combine(ans, SF, lift[i][SF + 1]);
                SF += (1 << i);
            }
        }

        if (ans[t % k] == 1e18)
            cout << "-1\n";
        else
            cout << ans[t % k] << "\n";
    }
}

Compilation message

toll.cpp: In function 'int main()':
toll.cpp:40:42: warning: suggest parentheses around '-' inside '<<' [-Wparentheses]
   40 |         for (int i = num_lay - (1 << bit - 1) - 1; i >= 0; i--)
      |                                      ~~~~^~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 116 ms 55124 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 76 ms 29872 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 1 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 1 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 116 ms 55124 KB Output isn't correct
2 Halted 0 ms 0 KB -