Пожалуйста, подпишитесь на официальный канал Codeforces в Telegram по ссылке https://t.me/codeforces_official. ×

Блог пользователя acash

Автор acash, история, 5 часов назад, По-английски

Problem statement A series of highways connect n cities numbered from 0 to n — 1. You are given a 2D integer array highways where highways[i] = [city1i, city2i, tolli] indicates that there is a highway that connects city1i and city2i, allowing a car to go from city1i to city2i and vice versa for a cost of tolli. You are also given an integer discounts which represents the number of discounts you have. You can use a discount to travel across the ith highway for a cost of tolli / 2 (integer division). Each discount may only be used once, and you can only use at most one discount per highway. Return the minimum total cost to go from city 0 to city n — 1, or -1 if it is not possible to go from city 0 to city n — 1.

Example 1: Input: n = 5, highways = [[0,1,4],[2,1,3],[1,4,11],[3,2,3],[3,4,2]], discounts = 1  Output: 9 Explanation: Go from 0 to 1 for a cost of 4. Go from 1 to 4 and use a discount for a cost of 11 / 2 = 5. The minimum cost to go from 0 to 4 is 4 + 5 = 9.

Time complexity As per my understanding Time complexity for this would be k * E log (V * k). Since Each edge can be reached with k different number of discount values and with decreased toll value everytime (k * E) and also this means each vertex may be present in heap k number of times (log(V * k)). Here K is the number of discounts. Is it correct ?

  • Проголосовать: нравится
  • 0
  • Проголосовать: не нравится

»
5 часов назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Auto comment: topic has been updated by acash (previous revision, new revision, compare).

»
4 часа назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

make two identical graph G(u,v) and G'(u,v) such that G'(u,v) initialize to G(u,v) now for edge E(u,v) make and from node u to v with weight w/2 where u belongs to G and v belongs to G' now apply dijkstra's shortest path algorithm from node 0 and find distance of node n-1 of graph G' here is code for this problem

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

int main(){
    int n,m;
    cin>>n>>m;
    vector<vector<pair<ll,ll>>>v(2*n);
    ll x,y;
    ll c;
    for(int i=0; i<m; i++){
        cin>>x>>y>>c;
        x--;
        y--;
        v[x].push_back({c,y});
        v[x].push_back({c/2,y+n});
        v[x+n].push_back({c,y+n});
    }
    set<pair<ll,ll>>s;
    s.insert({0,0});
    vector<ll>dist(2*n,1e15);
    dist[0]=0;
    while(!s.empty()){
        auto p=s.begin();
        ll dis=p->first;
        ll node=p->second;
        s.erase(p);
        for(auto pr: v[node]){
            if(dist[pr.second]>dis+pr.first){
                auto itr=s.find({dist[pr.second],pr.second});
                if(itr!=s.end()){
                    s.erase(itr);
                }
                dist[pr.second]=dis+pr.first;
                s.insert({dis+pr.first,pr.second});
            }
        }
    }
    cout<<dist[2*n-1];
}
»
4 часа назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

k is not required inside log as far I understand your solution

See this Click