-
백준 1193번 c++ 풀이백준 2018. 11. 18. 19:30반응형
수1의 군수열 열심히 풀때가 생각났읍니다.
근데 군수열 푸는게 더 쉬워..
#include <iostream>
#include <algorithm>
#include <queue>
#include <climits>
using namespace std;
int main(){
cin.tie(NULL);
ios::sync_with_stdio(false);
int n;
cin >> n;
int index = 1;
int group = 1;
int mother = 1;
int son = 1;
while (index != n){
if (group % 2 == 0){
if (mother == 1){ //끝
group++;
son = group;
}else {
mother--;
son++;
}
}else {
if (son == 1){
group++;
mother = group;
}else {
mother++;
son--;
}
}
index++;
}
cout << son << '/' << mother;
}반응형'백준' 카테고리의 다른 글
백준 1764번 c++ 풀이 (0) 2018.11.18 백준 1427번 C++ 풀이 (0) 2018.11.18 백준 16504 C++ 풀이 (0) 2018.11.18 백준 16935번 C++ 풀이 (0) 2018.11.18 백준 16936번 C++ 풀이 (0) 2018.11.18