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
- dfs
- SWEA
- BOJ
- 스택
- 백트래킹
- 동적 계획법
- koitp
- C++
- 소수
- 다이나믹 프로그래밍
- 백준
- Algorithm
- 시뮬레이션
- 에라토스테네스의 체
- BFS
- 삼성 SDS 대학생 알고리즘 특강
- 해커랭크
- PS
- 맛집
- dynamic programming
- 잠실
- 브루트포스
- DP
- 그리디
- 알고리즘
- 구현
- hackerrank
- 완전탐색
- sw expert academy
- 삼성 기출
Archives
- Today
- Total
펭로그
[C++] HackerRank 해커랭크 Counter game 본문
문제링크 : https://www.hackerrank.com/challenges/counter-game
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 | #include <bits/stdc++.h> using namespace std; string counterGame(unsigned long long int n) { // Complete this function int cnt = 0; while(n) { n &= (n-1); cnt++; } if(cnt&1) return "Louise"; else return "Richard"; //return cnt%2?"Louise":"Richard"; } int main() { int t; cin >> t; for(int a0 = 0; a0 < t; a0++){ unsigned long long int n; cin >> n; cout << counterGame(n-1) << endl; } return 0; } | cs |
'Study > PS(Algorithm)' 카테고리의 다른 글
[C++] 백준 BOJ 2839 설탕배달 (0) | 2018.07.13 |
---|---|
[C++] HackerRank 해커랭크 Roads and Libraries (0) | 2018.04.16 |
[C++] HackerRank 해커랭크 Tower Breakers (0) | 2018.03.24 |
[C++] HackerRank 해커랭크 Sansa and XOR (0) | 2018.03.22 |
[C++] HackerRank 해커랭크 Flipping the Matrix (0) | 2018.03.21 |
Comments