답안 #1115777

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1115777 2024-11-21T00:06:35 Z gustavo_d 철인 이종 경기 (APIO18_duathlon) C++17
0 / 100
40 ms 19804 KB
// https://oj.uz/problem/view/APIO18_duathlon > p520
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
const int MAXN = 1e5;
vector<int> adj[MAXN];
bool vis[MAXN];

pair<int, bool> dfs(int v, int pai) {
	vis[v] = true;
	int sz = 1;
	bool cycle = false;
	for (int viz : adj[v]) {
		if (vis[viz]) {
			if (viz != pai) cycle = true;
			continue;
		}
		pair<int, int> res = dfs(viz, v);
		sz += res.first;
		if (res.second) cycle = true;
	}
	return {sz, cycle};
}

ll qty(pair<int, bool> res) {
	int n = res.first; bool cycle = res.second;
	return (ll)(n) * (ll)(n - 1) * (ll)(n - 2) / (ll)(3 - 2*cycle);
}

int main() {
	ios_base::sync_with_stdio(false); cin.tie(NULL);

	int n, m; cin >> n >> m;
	for (int i=0; i<m; i++) {
		int u, v; cin >> u >> v;
		u--; v--;
		adj[u].push_back(v);
		adj[v].push_back(u);
	}
	ll ans = 0;
	for (int i=0; i<n; i++) {
		if (vis[i]) continue;
		assert(i==0);
		ans += qty(dfs(i, -1));
	}
	cout << ans << '\n';

	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 6 ms 5200 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 6 ms 5200 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 40 ms 13840 KB Output is correct
2 Correct 39 ms 13648 KB Output is correct
3 Runtime error 40 ms 19804 KB Execution killed with signal 6
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 2640 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 25 ms 5968 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 2640 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 26 ms 5888 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 6 ms 5200 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 6 ms 5200 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -