이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#define vi vector<int>
#define ve vector
#define ll long long
#define vl vector<ll>
#define vll vector<pair<ll,ll>>
#define onbit __builtin_popcount
#define ii pair<int,int>
#define vvi vector<vi>
#define vii vector<ii>
#define gii greater<ii>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define INF 1e18
#define eps 1e-7
#define eps1 1e-2
#define optimise ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define MAX_A 1e5+5
using namespace std;
using namespace __gnu_pbds;
template <class T>
using Tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
const int MOD = 1e9+7;
const int nax = 1e5+5;
const int MAX_VAL = 1e9;
double PI=3.14159265359;
int arx[8]={1,1,0,-1,-1,-1, 0, 1};
int ary[8]={0,1,1, 1, 0,-1,-1,-1};
typedef complex<int> Point;
#define X real()
#define Y imag()
void setIO(string s) {
freopen((s + ".in").c_str(), "r", stdin);
freopen((s + ".out").c_str(), "w", stdout);
}
int main(){
optimise;
/*#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif*/
//setIO("pump");
int n,m;
cin>>n>>m;
vector<pair<int,ll>> adj[n];
vector<pair<ll,ll>> tab(m);
vector<map<ll,ll>> check(n);
for (int i = 0; i < m; ++i)
{
int x,y,z,p;
cin>>x>>y>>z>>p;
x--;y--;
//cout <<p<<endl;
tab[i]={z,p};
check[x][z]+=p;
check[y][z]+=p;
adj[x].pb({y,i});
adj[y].pb({x,i});
}
priority_queue<pair<pair<ll,int>,pair<int,int>>,vector<pair<pair<ll,int>,pair<int,int>>>,greater<>> pq;
pq.push({{0,0},{-1,-1}});
vl dis(n,1e18);
dis[0]=0;
while(!pq.empty())
{
//return 0;
ll x=pq.top().fi.fi;
int y=pq.top().fi.se;
ll z=pq.top().se.fi;
ll k=pq.top().se.se;
pq.pop();
auto q=check[y];
for(auto u:adj[y])
{
auto c=tab[u.se];
int node=u.fi;
if (q[c.fi]==z&&node==y) {
q[c.fi]-=k;
continue;
}
if (q[c.fi]==c.se){
if (dis[node]<=x) continue;
pq.push({{x,node},{c.fi,y}});
dis[node]=x;
}else{
ll cur=max(min(q[c.fi]-c.se,c.se),1ll*0);
//cout << cur<<endl;
if (dis[node]<=x+cur) continue;
pq.push({{cur+x,node},{c}});
dis[node]=cur+x;
//cout <<check[node][c.fi]<<endl;
}//return 0;
}
}
if (dis[n-1]>=1e18) cout << -1<<endl;
else
cout <<dis[n-1]<<endl;
}
컴파일 시 표준 에러 (stderr) 메시지
Main.cpp: In function 'void setIO(std::string)':
Main.cpp:36:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
36 | freopen((s + ".in").c_str(), "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:37:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
37 | freopen((s + ".out").c_str(), "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |