QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#279310#4382. PathmuxiuyulinAC ✓310ms64360kbC++202.0kb2023-12-08 15:47:502023-12-08 15:47:51

Judging History

This is the latest submission verdict.

  • [2023-12-08 15:47:51]
  • Judged
  • Verdict: AC
  • Time: 310ms
  • Memory: 64360kb
  • [2023-12-08 15:47:50]
  • Submitted

answer

#include<bits/stdc++.h>
#include<iomanip>
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;
#define endl "\n"
#define IOS ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0)
#define int ll
const int N=1e6+10;
const int mod=1e9+7;
const int inf=0x3f3f3f3f;
typedef pair<int,int> pii;
int n,m,S,K,st[N][2],out[N],cnt;
vector<array<int,3>> g[N];
ll d[N][2];
void dijkstra(){
    set<int> s; priority_queue<array<ll,3>,vector<array<ll,3>>,greater<array<ll,3>>> q;
    for(int i=1;i<=n;i++) {
        d[i][0]=d[i][1]=1e18;
        st[i][0]=st[i][1]=0;
        s.insert(i); 
    }
    d[S][0]=0; q.push({d[S][0],S,0}); 
    while(!q.empty()){
        auto [dt,u,flag]=q.top(); q.pop();
        if(st[u][flag]) continue;
        st[u][flag]=1; s.erase(u);
        if(flag){
            cnt++; vector<int> del;
            for(auto [j,w,t]:g[u]) out[j]=cnt;
            for(auto j:s){
                if(out[j]!=cnt){
                    if(dt<d[j][0]){
                        d[j][0]=dt;
                        q.push({d[j][0],j,0});
                    }
                    del.push_back(j);
                }
            }
            for(auto j:del) s.erase(j);
            for(auto [j,w,t]:g[u]){
                if(d[j][t]>dt+w-K){
                    d[j][t]=dt+w-K;
                    q.push({d[j][t],j,t});
                }
            }
        }
        else{
            for(auto [j,w,t]:g[u]){
                if(d[j][t]>dt+w){
                    d[j][t]=dt+w;
                    q.push({d[j][t],j,t});
                }
            }
        }
    }
}
void solve(){
    cin>>n>>m>>S>>K;
    for(int i=1;i<=m;i++){
        int u,v,w,t; cin>>u>>v>>w>>t;
        g[u].push_back({v,w,t});
    }
    dijkstra();
    for(int i=1;i<=n;i++) {
        int x=min(d[i][0],d[i][1]);
        if(x==1e18) x=-1;
        cout<<x<<" ";
        g[i].clear();
    }
    cout<<endl;
}
signed main(){
    IOS;
    int _=1;
    cin>>_;
    while(_--){
        solve();
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 310ms
memory: 64360kb

input:

13
10 30 2 18468
5 1 37637 0
9 9 45430 0
6 6 41749 0
2 2 21463 1
8 7 50859 0
3 4 18760 0
2 7 38186 0
8 7 33239 0
10 3 44135 0
6 5 47171 0
3 4 36141 0
2 2 46721 0
8 5 51130 0
8 10 27191 0
10 9 30784 0
1 3 18756 0
1 3 37732 0
7 6 34358 0
1 1 33474 0
4 9 38097 0
5 5 37224 0
7 7 32399 0
5 10 43094 0
8 9...

output:

21463 0 21463 21463 21463 45392 38186 21463 21463 21463 
41923 0 45987 49920 18690 52316 71251 52316 25059 52316 
57062 34860 18647 36256 49111 29152 32554 62744 0 38939 
56122 64474 0 -1 84001 29542 39504 -1 -1 38273 
46451 44825 44825 44825 57660 38488 44825 44825 44825 0 
51281 91636 44602 39997 ...

result:

ok 13 lines