일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- command not found
- UnrealMP
- 의미와 무의미의 경계에서
- 1759번
- oracle
- 백준
- hackerank
- FBX
- 1967번
- 셰그먼트트리
- SQL
- Linux
- 1253번
- 데이터베이스 배움터
- 2단계로킹
- OS
- 언리얼 플러그인
- 오손데이터읽기
- objtofbx
- 트랜잭션 관리
- 민겸수
- 언리얼 커스텀 플러그인
- Unreal
- 비재귀셰그먼트
- 백준 1253번
- Security
- 실습
- UActor
- 5639
- C++
- Today
- Total
목록전체 글 (118)
fatalite
Problem 단계 : 2단계 (어떻게 이게 전에 푼 구현 문제랑 같은 단계지..) 분류 : 정렬 Solution #include #include #include using namespace std; int solution(vector A, vector B) { int answer = 0; sort(A.begin(),A.end()); sort(B.begin(),B.end()); for(int i : A){ answer = answer + i * B.back(); B.pop_back(); } return answer; }
Problem 문제 난이도 : 프로그래머스 2단계 분류 : 스택, 정렬, 구현 이거 쉬운 문제인것 같은데 못풀어서 자괴감이 심했다... Solution #include #include #include #include #include #include #include using namespace std; int PlanToTime(vector vs1){ string a = vs1[1]; int first = atoi(a.substr(0, 2).c_str()) * 60 + atoi(a.substr(3, 2).c_str()) ; return first; }; bool cmp(vector vs1, vector vs2){ int a = PlanToTime(vs1); int b = PlanToTime(vs2); re..
Problem 레벨 : 골드 5 분류 : 이분 탐색, 두 포인터 접근 : 처음에는 완전 탐색 + 중복 없애기로 했음 방법 : 이분 탐색과 포인터 두 개를 움직인다는 게 중요한 아이디어였다. Solution #include #include #include using namespace std; vector list; pair combination = { 1000000001,10000000001 }; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); int n; cin >> n; for (int i = 0; i > a; list.push_back(a); } int low = 0..