Recent Posts
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
- addhooks
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- VARCHAR (1)
- PersistenceContext
- kotlin
- pytest
- 오블완
- 티스토리챌린지
- JanusWebRTCServer
- JanusGateway
- 달인막창
- vfr video
- Value too long for column
- JanusWebRTCGateway
- Spring Batch
- terminal
- tolerated
- 코루틴 빌더
- 개성국밥
- 코루틴 컨텍스트
- taint
- mp4fpsmod
- 겨울 부산
- PytestPluginManager
- python
- preemption #
- 자원부족
- JanusWebRTC
- 깡돼후
- table not found
Archives
너와 나의 스토리
[BOJ] 20309 트리플 소트 본문
반응형
문제: www.acmicpc.net/problem/20309
문제 풀이:
- 세 개씩 뒤집다 보니 양끝 값만 swap 된다.
- 이때, 양 끝 값은 둘 다 짝수 자리 or 둘 다 홀수 자리가 된다.
- 즉, 짝수 위치에 짝수가 있고, 홀수 위치에 홀수가 있다면 오름차순으로 정렬할 수 있다.
소스 코드:
#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
#include <string.h>
#include <queue>
#include <set>
using namespace std;
int n;
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
bool flag = true;
for (int i = 1; i <= n; i++) {
int a;
cin >> a;
if (i % 2) {
if (a % 2 == 0) flag = false;
}
}
if (flag) cout << "YES";
else cout << "NO";
return 0;
}
반응형
'Algorithm > 기타' 카테고리의 다른 글
[BOJ] 20310 타노스 (0) | 2021.01.07 |
---|---|
[BOJ] 20205 교수님 그림이 깨지는데요? (0) | 2021.01.05 |
"2018 KAKAO BLIND RECRUITMENT" > [1차] 셔틀버스 (0) | 2020.10.09 |
"2018 KAKAO BLIND RECRUITMENT" > [1차] 뉴스 클러스터링 (0) | 2020.10.09 |
[SW Expert Academy] 9708. 가장 긴 수열 D4 (0) | 2020.06.04 |
Comments