답안 #392498

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
392498 2021-04-21T08:59:08 Z patrikpavic2 관광지 (IZhO14_shymbulak) C++17
0 / 100
67 ms 12752 KB
#include <cstdio>
#include <vector>
#include <algorithm>
#include <stack>
#include <cstdlib>

#define X first
#define Y second
#define PB push_back

using namespace std;

typedef long long ll;
typedef pair < int, ll > pil;

const int N = 2e5 + 500;
const int OFF = (1 << 18);

pil add(pil A, pil B){
	return {max(A.X, B.X), A.Y * (A.X >= B.X) + B.Y * (B.X >= A.X)};
}

pil mul(pil A, pil B){
	return {A.X + B.X, A.Y * B.Y};
}

int un[N], n;
vector < int > v[N];
vector < int > cik;
pil sol = {0, 0};

pil T[2 * OFF], ja[N];

pil f(int x, int lst){
	pil dep = {0, 1};
	for(int y : v[x]){
		if(y == lst || un[y]) continue;
		pil nxt = f(y, x);
		sol = add(sol, mul(dep, nxt));
		dep = add(dep, nxt);
	}
	dep.X++;
	return dep;
}

int bio[N];
stack < int > S;

void dfs(int x, int lst){
	if((int)cik.size() != 0) return;
	if(bio[x]){
		cik.PB(x);
		while(S.top() != x)
			cik.PB(S.top()), S.pop();
		return;			
	}
	bio[x] = 1;
	S.push(x);
	for(int y : v[x])
		if(y != lst)
			dfs(y, x);
	S.pop();
}


int main(){
	scanf("%d", &n);
	for(int i = 0;i < n;i++){
		int x, y; scanf("%d%d", &x, &y);
		v[x].PB(y), v[y].PB(x);
	}
	dfs(1, 1);
	for(int x : cik) un[x] = 1;
	for(int i = 0;i < OFF;i++)
		T[OFF + i].X = -N;
	for(int i = 0;i < (int)cik.size();i++)
		ja[i] = f(cik[i], cik[i]), ja[i].X--;
	for(int i = 0;i < (int)cik.size();i++){
		for(int j = 0;j < (int)cik.size();j++){
			if(i == j) continue;
			sol = add(sol, mul(ja[j], add(add({abs(i - j), 1}, {(int)cik.size() - abs(i - j), 1}), ja[i])));
		}
	}
	printf("%lld\n", sol.Y);
	return 0;
}





Compilation message

shymbulak.cpp: In function 'int main()':
shymbulak.cpp:67:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   67 |  scanf("%d", &n);
      |  ~~~~~^~~~~~~~~~
shymbulak.cpp:69:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   69 |   int x, y; scanf("%d%d", &x, &y);
      |             ~~~~~^~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 9036 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 9 ms 9164 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 67 ms 12380 KB Output is correct
2 Incorrect 57 ms 12752 KB Output isn't correct
3 Halted 0 ms 0 KB -