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
- SWEA
- 맛집
- Algorithm
- 백트래킹
- 잠실
- 소수
- 삼성 기출
- dynamic programming
- 백준
- sw expert academy
- 삼성 SDS 대학생 알고리즘 특강
- 완전탐색
- DP
- BFS
- 해커랭크
- koitp
- 그리디
- 동적 계획법
- 스택
- BOJ
- PS
- 다이나믹 프로그래밍
- 에라토스테네스의 체
- 구현
- 알고리즘
- C++
- 브루트포스
- hackerrank
- dfs
- 시뮬레이션
Archives
- Today
- Total
목록Counter game (1)
펭로그
[C++] HackerRank 해커랭크 Counter game
문제링크 : https://www.hackerrank.com/challenges/counter-game 1234567891011121314151617181920212223242526272829#include 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 > n; cout
Study/PS(Algorithm)
2018. 4. 10. 16:57