[PS] 문제풀이/백준
[ 백준 1076 ] 저항 (C++)
안산학생
2020. 2. 29. 23:41
[해결과정]
1. input : 3가지 색깔 (string)
2. 배열을 만들고, 색깔을 인자로 받고 값을 리턴하는 함수를 만들어, 각각의 색에 return 값을 만들어 준다.
3. 1번째와 2번째 배열 값들은 그대로 출력해주고, 3번째 배열 값 만큼 0을 반복하여 출력한다.
-> 예외1 : 1번째 배열 값이 0인 경우, 2번째 배열 값만 출력
-> 예외2 : 1번째 배열 값과 2번째 배열 값이 0인 경우 0을 출력
[소스코드]
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
52
53
54
55
56
57
58
59
|
/*
BOJ 1076 - 저항
Created by haejun on 2020/02/29
*/
#include<iostream>
#include<vector>
#include<queue>
#include<memory.h>
#include<math.h>
#include<algorithm>
#include<string>
using namespace std;
int check(string s) {
if (s == "black") return 0;
else if (s == "brown") return 1;
else if (s == "red") return 2;
else if (s == "orange") return 3;
else if (s == "yellow") return 4;
else if (s == "green") return 5;
else if (s == "blue") return 6;
else if (s == "violet") return 7;
else if (s == "grey") return 8;
else if (s == "white") return 9;
}
void print(int a) {
for (int i = 0; i < a; i++) cout << 0;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
string s;
long long int ans = 0;
int arr[3];
for (int i = 0; i < 3; i++) {
cin >> s;
arr[i] = check(s);
}
if (arr[0] == 0 && arr[1] == 0) {
cout << 0 << "\n";
return 0;
}
else if (arr[0] == 0 && arr[1] != 0) {
cout << arr[1];
print(arr[2]);
}
else {
cout << arr[0] << arr[1];
print(arr[2]);
}
cout << "\n";
return 0;
}
|
[해결 과정 중 실수한 부분 / 잡담]
오늘의 후기 "브론즈 문제라고 무시하면 큰 코 다친다."
브론즈 문제도 해석에 어려움이 있을 수 있고, 구현의 어려움이 있을 수 있다...
Solved.ac 등급에 너무 의존하지 말 것!
처음에 이게 무슨 문제인지, 어떻게 처리해야 할지 막막했다;
[관련 문제 혹은 비슷한 문제]
없음