Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 캘리그라피
- Segment Tree
- boj
- 창훈쓰다
- 인간이 그리는 무늬
- BOJ 2098
- 다음 지도 api
- 성화봉송주자
- DP
- 그리디 알고리즘
- 다이나믹 프로그래밍
- BFS
- 생활코딩
- 성화봉송
- 삼성 코딩테스트
- yolo
- upper_bound
- 언어의 온도
- 영어회화 100일의 기적
- 안드로이드 스튜디오
- 위상정렬
- 다음 API
- lower_bound
- 비트마스크
- 백트레킹
- 외판원 순회
- MST
- multiset
- 평창동계올림픽
- 이분탐색
Archives
- Today
- Total
Hoon222y
[BOJ 14614] Calculate! 본문
https://www.acmicpc.net/problem/14614
XOR연산에 관련된 문제이다.
핵심은 비트연산은 && ,|| 가 아니라 &,|을 쓴다는 것이다.!!!!!
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 | #include <iostream> #include <cstring> #include <vector> #include <cstdio> #include <queue> #include <algorithm> using namespace std; int main(){ int a,b; string c; scanf("%d%d" , &a,&b); cin >>c; int len = c.length(); int ans = ((~a) & b) | (a & (~b)); if((c[len-1]-'0')%2 == 0){ printf("%d\n" , a); }else{ printf("%d\n" , ans); } return 0; } | cs |
와!!!!!!!!!!!!!!!!! XOR연산은 그냥 a^b 로 하면된다니!!!!!!!
미쳐!!!
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 | #include <iostream> #include <cstring> #include <vector> #include <cstdio> #include <queue> #include <algorithm> using namespace std; int main(){ int a,b; string c; scanf("%d%d" , &a,&b); cin >>c; int len = c.length(); int ans = a^b; //int ans = ((~a) & b) | (a & (~b)); if((c[len-1]-'0')%2 == 0){ printf("%d\n" , a); }else{ printf("%d\n" , ans); } return 0; } | cs |
'코딩 > BOJ & 알고스팟' 카테고리의 다른 글
[BOJ 1300] K번째 수 (0) | 2017.06.15 |
---|---|
[BOJ 1194] 달이 차오른다, 가자. (1) | 2017.06.15 |
[BOJ 1182] 부분집합의 합 (0) | 2017.05.25 |
[BOJ 1261] 알고스팟 (0) | 2017.05.24 |
[BOJ 14499] 주사위 굴리기 (2) | 2017.04.11 |
Comments