Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 유니온 파인드
- 수학
- 문자열
- 시뮬레이션
- 누적 합
- 다이나믹 프로그래밍
- VR
- 그래프
- 알고리즘
- 구현
- 유니티
- 다익스트라
- 트리
- DFS
- c++
- 자료구조
- Team Fortress 2
- ue5
- 재귀
- 브루트포스
- 투 포인터
- 백준
- 우선순위 큐
- BFS
- 정렬
- 스택
- Unreal Engine 5
- 그리디 알고리즘
- 백트래킹
- XR Interaction Toolkit
Archives
- Today
- Total
1일1알
Judge - 1231 : 양궁 선수 순위 예측 C++ 본문
이기는 경우와 지는 경우를 나눠서 그래프 두개를 만들어서 풀었다.
정답을 저장하는 벡터에 초기값으로 1,n 을 pair로 저장하고 ( 처음에는 1~n등 전부 가능한 상태)
이기는 그래프를 탐색해서 k개의 탐색을 했다면 내 밑에 k명이 있기 때문에 1~n-k등이 가능하다.
지는 그래프를 탐색해서 p개의 탐색을 했다면 내 위에 p명이 있기 때문에 1+p ~ n-k 등이 가능하다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n, m;
int cnt = -1;
bool isCycle = false;
vector<vector<int>> win;
vector<vector<int>> lose;
vector<bool> visited;
vector<pair<int, int>> ans;
void Refresh() {
cnt = -1;
for (int i = 1; i <= n; i++) {
visited[i] = false;
}
}
void DfsWin(int curr, int start) {
if (visited[curr] && curr == start) {
isCycle = true;
return;
}
if (visited[curr]) return;
visited[curr] = true;
cnt++;
for (auto next : win[curr]) {
DfsWin(next, start);
}
}
void DfsLose(int curr, int start) {
if (visited[curr] && curr == start) {
isCycle = true;
return;
}
if (visited[curr]) return;
visited[curr] = true;
cnt++;
for (auto next : lose[curr]) {
DfsLose(next, start);
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
win = vector<vector<int>>(n + 1, vector<int>());
lose = vector<vector<int>>(n + 1, vector<int>());
ans = vector<pair<int, int>>(n + 1, { 1,n });
visited = vector<bool>(n + 1, false);
for (int i = 0; i < m; i++) {
int winner, loser;
cin >> winner >> loser;
win[winner].push_back(loser);
lose[loser].push_back(winner);
}
for (int i = 1; i <= n; i++) {
DfsWin(i, i);
ans[i].second -= cnt;
Refresh();
DfsLose(i, i);
ans[i].first += cnt;
Refresh();
}
if (isCycle) {
cout << "-1";
}
else {
for (int i = 1; i <= n; i++) {
cout << ans[i].first << " " << ans[i].second << "\n";
}
}
}
'알고리즘' 카테고리의 다른 글
백준 2143번 두 배열의 합 C++ (0) | 2022.07.20 |
---|---|
백준 1644번 소수의 연속합 C++ (0) | 2022.07.19 |
Judge - 1233 : 한기대 최고의 보안 시스템 C++ (0) | 2022.07.17 |
Judge - 1236 : 넌 얼마나 빠르게 왔었니? (0) | 2022.07.16 |
Judge - 1235 : Please In My Frontyard! C++ (0) | 2022.07.15 |