From b11fe10232e219f8058144cac92a9092769e2d66 Mon Sep 17 00:00:00 2001 From: belowyoon <92996412+belowyoon@users.noreply.github.com> Date: Fri, 26 Apr 2024 22:45:59 +0900 Subject: [PATCH] =?UTF-8?q?[Gold=20II]=20Title:=20=EA=B0=80=EC=9E=A5=20?= =?UTF-8?q?=EA=B8=B4=20=EC=A6=9D=EA=B0=80=ED=95=98=EB=8A=94=20=EB=B6=80?= =?UTF-8?q?=EB=B6=84=20=EC=88=98=EC=97=B4=202,=20Time:=20160=20ms,=20Memor?= =?UTF-8?q?y:=2012200=20KB=20-BaekjoonHub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../README.md" | 32 +++++++++++++++ ...5\354\210\230\354\227\264\342\200\2052.cc" | 40 +++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 "\353\260\261\354\244\200/Gold/12015.\342\200\205\352\260\200\354\236\245\342\200\205\352\270\264\342\200\205\354\246\235\352\260\200\355\225\230\353\212\224\342\200\205\353\266\200\353\266\204\342\200\205\354\210\230\354\227\264\342\200\2052/README.md" create mode 100644 "\353\260\261\354\244\200/Gold/12015.\342\200\205\352\260\200\354\236\245\342\200\205\352\270\264\342\200\205\354\246\235\352\260\200\355\225\230\353\212\224\342\200\205\353\266\200\353\266\204\342\200\205\354\210\230\354\227\264\342\200\2052/\352\260\200\354\236\245\342\200\205\352\270\264\342\200\205\354\246\235\352\260\200\355\225\230\353\212\224\342\200\205\353\266\200\353\266\204\342\200\205\354\210\230\354\227\264\342\200\2052.cc" diff --git "a/\353\260\261\354\244\200/Gold/12015.\342\200\205\352\260\200\354\236\245\342\200\205\352\270\264\342\200\205\354\246\235\352\260\200\355\225\230\353\212\224\342\200\205\353\266\200\353\266\204\342\200\205\354\210\230\354\227\264\342\200\2052/README.md" "b/\353\260\261\354\244\200/Gold/12015.\342\200\205\352\260\200\354\236\245\342\200\205\352\270\264\342\200\205\354\246\235\352\260\200\355\225\230\353\212\224\342\200\205\353\266\200\353\266\204\342\200\205\354\210\230\354\227\264\342\200\2052/README.md" new file mode 100644 index 0000000..c6f716d --- /dev/null +++ "b/\353\260\261\354\244\200/Gold/12015.\342\200\205\352\260\200\354\236\245\342\200\205\352\270\264\342\200\205\354\246\235\352\260\200\355\225\230\353\212\224\342\200\205\353\266\200\353\266\204\342\200\205\354\210\230\354\227\264\342\200\2052/README.md" @@ -0,0 +1,32 @@ +# [Gold II] 가장 긴 증가하는 부분 수열 2 - 12015 + +[문제 링크](https://www.acmicpc.net/problem/12015) + +### 성능 요약 + +메모리: 12200 KB, 시간: 160 ms + +### 분류 + +이분 탐색, 가장 긴 증가하는 부분 수열: O(n log n) + +### 제출 일자 + +2024년 4월 26일 22:45:23 + +### 문제 설명 + +

수열 A가 주어졌을 때, 가장 긴 증가하는 부분 수열을 구하는 프로그램을 작성하시오.

+ +

예를 들어, 수열 A = {10, 20, 10, 30, 20, 50} 인 경우에 가장 긴 증가하는 부분 수열은 A = {10, 20, 10, 30, 20, 50} 이고, 길이는 4이다.

+ +### 입력 + +

첫째 줄에 수열 A의 크기 N (1 ≤ N ≤ 1,000,000)이 주어진다.

+ +

둘째 줄에는 수열 A를 이루고 있는 Ai가 주어진다. (1 ≤ Ai ≤ 1,000,000)

+ +### 출력 + +

첫째 줄에 수열 A의 가장 긴 증가하는 부분 수열의 길이를 출력한다.

+ diff --git "a/\353\260\261\354\244\200/Gold/12015.\342\200\205\352\260\200\354\236\245\342\200\205\352\270\264\342\200\205\354\246\235\352\260\200\355\225\230\353\212\224\342\200\205\353\266\200\353\266\204\342\200\205\354\210\230\354\227\264\342\200\2052/\352\260\200\354\236\245\342\200\205\352\270\264\342\200\205\354\246\235\352\260\200\355\225\230\353\212\224\342\200\205\353\266\200\353\266\204\342\200\205\354\210\230\354\227\264\342\200\2052.cc" "b/\353\260\261\354\244\200/Gold/12015.\342\200\205\352\260\200\354\236\245\342\200\205\352\270\264\342\200\205\354\246\235\352\260\200\355\225\230\353\212\224\342\200\205\353\266\200\353\266\204\342\200\205\354\210\230\354\227\264\342\200\2052/\352\260\200\354\236\245\342\200\205\352\270\264\342\200\205\354\246\235\352\260\200\355\225\230\353\212\224\342\200\205\353\266\200\353\266\204\342\200\205\354\210\230\354\227\264\342\200\2052.cc" new file mode 100644 index 0000000..c225da7 --- /dev/null +++ "b/\353\260\261\354\244\200/Gold/12015.\342\200\205\352\260\200\354\236\245\342\200\205\352\270\264\342\200\205\354\246\235\352\260\200\355\225\230\353\212\224\342\200\205\353\266\200\353\266\204\342\200\205\354\210\230\354\227\264\342\200\2052/\352\260\200\354\236\245\342\200\205\352\270\264\342\200\205\354\246\235\352\260\200\355\225\230\353\212\224\342\200\205\353\266\200\353\266\204\342\200\205\354\210\230\354\227\264\342\200\2052.cc" @@ -0,0 +1,40 @@ +#include +#include +#include +#include + +using namespace std; + +int main() { + ios_base::sync_with_stdio(0); + cin.tie(0); + + int n; + cin >> n; + + vector arr(n, 0); + for (int i = 0; i < n; i++) { + cin >> arr[i]; + } + + vector sorted; + sorted.push_back(arr[0]); + for (int i = 1; i < n; i++) { + if (sorted[sorted.size()-1] < arr[i]) { + sorted.push_back(arr[i]); + } else { + int s = 0, e = sorted.size()-1, mid; + while (s < e) { + mid = (s + e) / 2; + if (arr[i] > sorted[mid]) { + s = mid + 1; + } else { + e = mid; + } + } + sorted[s] = arr[i]; + } + } + cout << sorted.size(); + return 0; +}