답안 #976682

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
976682 2024-05-07T02:47:14 Z Izaz 사이버랜드 (APIO23_cyberland) C++17
0 / 100
22 ms 8540 KB
#include <bits/stdc++.h>
using namespace std;

#define f first
#define s second
#define mn(a,b) min(a,b)
#define mx(a,b) max(a,b)
#define ll long long
vector<pair<int,int>>G[int(1e5)];
double My_Num = 0;
int ok = 0 ;
bool vis[100001];
void dfs(int x,int p,int h){
	if(x == h){
		ok = 1;
		return;
	}
	if(vis[x])return;
	vis[x]=1;
	for(auto u : G[x]){
		if(u.f==p)continue;
		My_Num+=u.s;
		dfs(u.f,x,h);
		if(ok)return;
		My_Num-=u.s;
	}
}
double solve(int N, int M, int K, int H, std::vector<int> x, std::vector<int>
y, std::vector<int> c, std::vector<int> arr){
	for(int i = 0 ; i < M ;i++){
		G[x[i]].push_back({y[i],c[i]});
		G[y[i]].push_back({x[i],c[i]});
	}
	dfs(0,-1,H);
	return My_Num;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 14 ms 3676 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 14 ms 4700 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 16 ms 4700 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 22 ms 8540 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 18 ms 4836 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 17 ms 4884 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 15 ms 4956 KB Wrong Answer.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 16 ms 4956 KB Wrong Answer.
2 Halted 0 ms 0 KB -