문제: icpc.me/1252
두 이진수를 입력받아 더한 결과를 출력하는 문제이다.
string 변수 a,b를 선언하여 크기에 따라서 순서를 강제시켜준 뒤 덧셈 연산을 해주면 된다. 이 때 캐리 변수를 생성하여 관리해주면 덧셈 계산에 용이하다 주의 할 점은 0으로 시작하는 문자열이 들어올수도 있다.(이걸 안읽어서 3번이나 틀렸다.) 문제를 자세히 읽어야한다는 교훈을 얻은 문제이다.
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | #include <cstdio> #include <algorithm> #include <string> #include <iostream> using namespace std; string x, y; int a[100], of, f; int main() { cin >> x >> y; reverse(x.begin(), x.end()); reverse(y.begin(), y.end()); if (x.length() > y.length()) swap(x, y); for (int i = 0; i <y.length(); i++) { if (i < x.length()) { int cx = x[i] - '0'; int cy = y[i] - '0'; if (of + cx + cy < 2) { a[i] = of + cx + cy; of = 0; } else { a[i] = of + cx + cy - 2; of = 1; } } else { int cy = y[i] - '0'; if (of + cy < 2) { a[i] = of + cy; of = 0; } else { a[i] = of + cy - 2; of = 1; } } } if (of) { f = 1; printf("1"); } for (int i = y.length() - 1; i >= 0; i--) { if (a[i])f = 1; if (!a[i] && !f)continue; printf("%d", a[i]); } if (!f)printf("0"); puts(""); return 0; } | cs |
'알고리즘 관련 > BOJ' 카테고리의 다른 글
BOJ)11408 열혈강호5 (0) | 2017.03.09 |
---|---|
BOJ)9370 미확인 도착지 (0) | 2017.03.08 |
BOJ)2636 치즈 (0) | 2017.03.06 |
BOJ)1629 곱셈 (0) | 2017.03.05 |
BOJ)1201 NMK (0) | 2017.03.05 |