답안 #850904

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
850904 2023-09-17T18:35:28 Z pakapu Monthly railway pass (LMIO18_menesinis_bilietas) C++17
0 / 100
280 ms 45708 KB
#include <bits/stdc++.h>

using namespace std;

set<int> used_cc;

vector<int> used;
vector<int> cc_size;
vector<int> distribute_used;
vector<int> answer_used;
vector<int> cc_leader;

vector<vector<int>> bus_g;
vector<vector<int>> train_g;

int calculate_cc_size(int u, int leader) {
	used[u] = true;
	int curr_size = 1;

	for(auto v : train_g[u]) {
		if(used[v]) {
			continue;
		}

		cc_leader[v] = leader;
		curr_size += calculate_cc_size(v, leader);
	}

	return curr_size;
}

int calculate_cheap_routes(int u) {
	answer_used[u] = true;
	int ans = 0;

	for(auto v : train_g[u]) {
		if(answer_used[v]) {
			continue;
		}

		ans += calculate_cheap_routes(v);
	}

	for(auto v : bus_g[u]) {
		if(used_cc.count(cc_leader[v])) {
			continue;
		}
		used_cc.insert(cc_leader[v]);
		ans += cc_size[cc_leader[v]];
	}

	return ans;
}

signed main() {
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);

	int n, m;
	cin >> n >> m;

	bus_g = vector<vector<int>>(n);
	train_g = vector<vector<int>>(n);

	for(int i = 0; i < m; i++) {
		int from, to;
		char type;
		cin >> from >> to >> type;
		from--;
		to--;

		if(type == 'T') {
			train_g[to].push_back(from);
			train_g[from].push_back(to);
		}
		if(type == 'A') {
			bus_g[to].push_back(from);
			bus_g[from].push_back(to);
		}
	}

	cc_leader = vector<int>(n);
	for(int i = 0; i < n; i++) {
		cc_leader[i] = i;
	}
	used = vector<int>(n);
	cc_size = vector<int>(n);
	distribute_used = vector<int>(n);
	for(int i = 0; i < n; i++) {
		if(!used[i]) {
			int curr = calculate_cc_size(i, i);
			cc_size[cc_leader[i]] = curr;

			/*for(auto c : cc_leader) {
				cout << c << ' ';
			}
			cout << '\n';*/
			/*cout << i << ' ' << curr << '\n';
			for(auto c : cc_size) {
				cout << c << ' ';
			}
			cout << '\n';*/
		}
	}

	// Calculate the number of reachable cities for every node
	int mx = 0;
	int ans = 0;
	answer_used = vector<int>(n);
	vector<int> cheap_cities(n);
	for(int i = 0; i < n; i++) {
		if(!answer_used[i]) {
			used_cc.clear();
			cheap_cities[cc_leader[i]] = cc_size[cc_leader[i]] + calculate_cheap_routes(i);
			if(cheap_cities[cc_leader[i]] > mx) {
				mx = cheap_cities[cc_leader[i]];
			}
		}
	}

	for(int i = 0; i < n; i++) {
		//cout << c << ' ';
		if(cheap_cities[cc_leader[i]] == mx) {
			ans++;
		}
	}
	cout << '\n';
	cout << ans << '\n';

	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 280 ms 45708 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Incorrect 1 ms 408 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 16 ms 33372 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 1 ms 408 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 1 ms 408 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 280 ms 45708 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Incorrect 1 ms 408 KB Output isn't correct
4 Halted 0 ms 0 KB -