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
- sw expert academy
- 잠실
- 삼성 SDS 대학생 알고리즘 특강
- DP
- 에라토스테네스의 체
- dynamic programming
- 해커랭크
- 삼성 기출
- 다이나믹 프로그래밍
- 알고리즘
- Algorithm
- 소수
- 맛집
- 구현
- SWEA
- 백트래킹
- 시뮬레이션
- 스택
- C++
- hackerrank
- PS
- 브루트포스
- dfs
- 백준
- 그리디
- BOJ
- 완전탐색
- BFS
- 동적 계획법
- koitp
Archives
- Today
- Total
펭로그
[C++] 백준 BOJ 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[] = {0, 1, 0, 0}; 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