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 | 31 |
Tags
- c++
- Union-find
- 코딩테스트
- 코테
- BFS
- LIS #Algorithm #요소추적
- 소감
- 중반부
- 삼성 #코테 #2020상반기 #c++
- 1편
- Smilegate
- 알고리즘
- 유니온파인드
- BaekJoon
- 식단
- 카카오
- 서버개발캠프
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 보석쇼핑
- 스마일게이트
- 카카오인턴
- Algorithm
- 투포인터
- 백준
Archives
- Today
- Total
짱아의 개발 기록장
백준 14888번. 연산자 끼워넣기(c++) / String+순열 본문
반응형
문자열에 순열을 가미한 문제였다.
가장 놓치지 쉬운 부분이 MAX의 초기값 설정에 관한 부분이었는데...
최대값도 음수가 될 수 있다는 점!!!!
그래서 최대값도 0이 아니라 -INT_MAX값으로 초기화 해주어야 한다.
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 | #include <iostream> #include <vector> #include <algorithm> using namespace std; int n, op; char oper[4] = {'+', '-', '*', '/'}; int num[101] = {0, }; vector<int> v; int MIN = 987654321, MAX = -987654321; int cal(){ int temp = num[0]; for(int i=1; i<n; i++){ char OP = oper[v[i-1]]; if(OP=='+'){ temp += num[i]; }else if(OP=='-'){ temp -= num[i]; }else if(OP=='*'){ temp *= num[i]; }else{ temp /= num[i]; } } return temp; } int main() { cin>>n; for(int i=0; i<n; i++){ cin>>num[i]; } for(int i=0; i<4; i++){ cin>>op; for(int j=0; j<op; j++){ v.push_back(i); } } do{ int temp = cal(); MAX = max(MAX, temp); MIN = min(MIN, temp); }while(next_permutation(v.begin(),v.end())); cout<<MAX<<"\n"; cout<<MIN<<"\n"; return 0; } | cs |
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 2250번. 트리의 높이와 너비(c++) / Tree (0) | 2021.03.02 |
---|---|
백준 1717번. 집합의 표현(c++) / 유니온파인드 (0) | 2021.02.26 |
백준 2293번. 동전 1(c++) / DP (0) | 2021.02.14 |
백준 14501번. 퇴사(c++) / 그리디 (0) | 2021.02.10 |
백준 1937번. 욕심쟁이 판다(c++) / DFS+DP (0) | 2021.01.09 |
Comments