Visual Studio 에서 <bits/stdc++.h> 사용하는 방법
이 파일을 다운받아서 설치 경로에 복사하자. 설치경로 예시) D:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.25.28610\include\bits 이제 헤더 걱정 끝!
이 파일을 다운받아서 설치 경로에 복사하자. 설치경로 예시) D:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.25.28610\include\bits 이제 헤더 걱정 끝!
https://docs.google.com/presentation/d/1IZj8lbcurFcLJ25mHTO1e8hb8vS_vkUKmthI_RX6DNY/edit?usp=sharing
#include #include #include using namespace std; bool solution(vector phone_book) { bool answer = true; sort(phone_book.begin(), phone_book.end()); for(int i = 0 ; i < phone_book.size() - 1;i++) { if (phone_book[i] == phone_book[i+1].substr(0, phone_book[i].length())) answer = false; } return answer; }
#include #include using namespace std; vector solution(vector heights) { vector answer; answer.resize(heights.size(), 0); // 제일 오른쪽에 있는 타워부터 탐색 for (int curr = heights.size() - 1; curr >= 0; --curr) { int currHeight = heights[curr]; for (int compare = curr - 1; compare >= 0; --compare) { if (heights[compare] > currHeight) { answer[curr] = compare + 1; break; } } } return answer; }