# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
655008 | DJeniUp | Designated Cities (JOI19_designated_cities) | C++17 | 568 ms | 71860 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
//#pragma GCC optimize("O3")
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll>pairll;
typedef long double ld;
#define fr first
#define sc second
#define pb push_back
#define INF 100000000000000007
#define I 100000000000007
#define N 100007
#define endl '\n'
#define MOD 998244353
ll n,res,resx;
vector<pairll>v[2*N];
map<ll,ll>m[2*N];
ll S(ll x,ll y){
ll rs=0;
for(int i=0;i<v[x].size();i++){
if(v[x][i].fr!=y){
rs+=v[x][i].sc+S(v[x][i].fr,x);
}
}
return rs;
}
void D(ll x,ll y,ll z){
if(res>z){
res=z;
resx=x;
}
for(int i=0;i<v[x].size();i++){
if(v[x][i].fr!=y){
D(v[x][i].fr,x,z-v[x][i].sc+m[v[x][i].fr][x]);
}
}
return ;
}
int main()
{
cin>>n;
for(int i=1;i<n;i++){
ll x,y,z,z1;
cin>>x>>y>>z>>z1;
v[x].pb({y,z});
v[y].pb({x,z1});
m[x][y]=z;
m[y][x]=z1;
}
res=INF;
D(1,1,S(1,1));
cout<<res<<endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |