티스토리 뷰
10775번: 공항
예제 1 : [2][?][?][1] 형태로 도킹시킬 수 있다. 3번째 비행기는 도킹시킬 수 없다. 예제 2 : [1][2][3][?] 형태로 도킹 시킬 수 있고, 4번째 비행기는 절대 도킹 시킬 수 없어서 이후 추가적인 도킹은 불
www.acmicpc.net
백준 소스코드 [C++] 10775 공항
#include <iostream>
#include <algorithm>
#include <queue>
#include <string.h>
#include <limits.h>
#include <vector>
#include <math.h>
#include <stack>
#include <bitset>
#include <string>
#include <set>
#include <map>
#include <unordered_map>
#include <sstream>
#define all(v) v.begin(), v.end()
#define pii pair<int, int>
#define make_unique(v) v.erase(unique(v.begin(), v.end()), v.end())
typedef long long ll;
using namespace std;
int gates[100001];
int getGate(int x) {
if (x == gates[x])return x;
return gates[x] = getGate(gates[x]);
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, m,k;
bool flag = false;
int res = 0;
cin >> n;
cin >> m;
for (int i = 0;i <= n;i++) gates[i] = i;
for (int i = 0;i < m;i++) {
cin >> k;
if (flag == true) continue;
int resGate = getGate(k);
if (resGate == 0) flag = true;
else {
gates[resGate] = resGate - 1;
res++;
}
}
cout << res;
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 10840 구간 성분 (0) | 2021.03.13 |
---|---|
백준 소스코드 [C++] 6086 최대 유량 (0) | 2021.03.12 |
백준 소스코드 [C++] 1436 영화감독 숌 (0) | 2021.03.09 |
백준 소스코드 [C++] 수열과 쿼리 26 (0) | 2021.03.07 |
백준 소스코드 [C++] 1525 퍼즐 (0) | 2021.03.07 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 벨만포드 알고리즘
- 부스트캠프 6기
- 강한 순환 참조
- IOS
- mach-o
- 다익스트라 시간복잡도
- test coverage
- observeOn
- HIG
- 최단경로문제
- 포드 풀커슨 알고리즘
- WWDC19
- CompositionalLayout
- State Restoration
- 컴퓨터 추상화
- 최단경로 알고리즘
- 최대 매칭
- rxswift
- 최단경로 문제
- 네트워크 플로우
- Testable
- 코딩대회
- 에드몬드 카프 알고리즘
- MeTal
- 네트워크 유량
- WWDC17
- CPU와 Memory
- WWDC21
- WWDC16
- 벨만포드 시간복잡도
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함