펭로그

[C++] 백준 BOJ 1547 공 본문

Study/PS(Algorithm)

[C++] 백준 BOJ 1547 공

노랑펭귄 2018. 9. 18. 18:58

https://boj.kr/1547


간단한 시뮬레이션 문제로 배열의 value를 swap을 해주기만 하면 끝


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
// BOJ 1547 공
#include <iostream>
 
using namespace std;
 
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
    freopen("../input.txt""r", stdin);
    int cup[] = {0100};
    int cnt;
    cin >> cnt;
    while(cnt--){
        int a, b, tmp;
        cin >> a >> b;
        tmp = cup[a];
        cup[a] = cup[b];
        cup[b] = tmp;
    }
    int result = 0;
    while(!cup[++result]);
    cout << result;
    return 0;
}
cs


'Study > PS(Algorithm)' 카테고리의 다른 글

[C++] 백준 BOJ 1929 소수 구하기  (0) 2018.09.19
[C++] 백준 BOJ 3055 탈출  (0) 2018.09.18
[C++] 백준 BOJ 3190 뱀  (0) 2018.09.18
[C++] 백준 BOJ 14499 주사위 굴리기  (0) 2018.09.18
[C++] 백준 BOJ 11048 이동하기  (0) 2018.09.17
Comments