-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
20-yuyu0830
- Loading branch information
Showing
2 changed files
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
#include <iostream> | ||
#include <map> | ||
#include <vector> | ||
|
||
#define NUM 1000010 | ||
#define fastio ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); | ||
|
||
using namespace std; | ||
|
||
typedef pair<int, int> ii; | ||
|
||
int cnt = 0; | ||
int arr[NUM] = {0, }; | ||
vector<ii> v[NUM]; | ||
|
||
// μ΄μ§ νμ | ||
int bs(int value) { | ||
int low = 0, mid, high = cnt; | ||
|
||
while (low <= high) { | ||
mid = (low + high) / 2; | ||
|
||
if (v[mid].back().first == value) | ||
return -1; | ||
|
||
if (value < v[mid].back().first) high = mid - 1; | ||
else low = mid + 1; | ||
} | ||
|
||
return mid + (value < v[mid].back().first ? -1 : 0); | ||
} | ||
|
||
int main() { | ||
fastio; | ||
|
||
int n; cin >> n; | ||
|
||
for (int i = 0; i < n; i++) { | ||
cin >> arr[i]; | ||
} | ||
|
||
// μ€λ₯ λλΉ μ΄κΈ°κ° | ||
v[0].push_back(make_pair(-1000000001, 0)); | ||
|
||
for (int i = 0; i < n; i++) { | ||
int l = arr[i]; | ||
|
||
if (l > v[cnt].back().first) { | ||
// λ§μ½ κ°μ₯ ν° κ°μ΄λ©΄ 맨 μμ λκΈ° | ||
v[++cnt].push_back(make_pair(l, v[cnt - 1].size())); | ||
continue; | ||
} | ||
|
||
// μ€κ°μ λ€μ΄κ°μΌνλ κ°μ΄λ©΄ μμ μμκ° λμ§ μ μ₯ν λ€μ 벑ν°μ λ³΄κ΄ | ||
int t = bs(l) + 1; | ||
if (t == 0) continue; | ||
|
||
v[t].push_back(make_pair(l < v[t].back().first ? l : v[t].back().first, v[t - 1].size())); | ||
} | ||
|
||
printf("%d\n", cnt); | ||
|
||
// κ°μ₯ λ μμλΆν° μμμΌλ‘ μμ μ°Ύμμ€κΈ° | ||
vector<int> ans; | ||
ii tmp = v[cnt--][0]; | ||
|
||
do { | ||
ans.push_back(tmp.first); | ||
tmp = v[cnt][tmp.second - 1]; | ||
} while(cnt--); | ||
|
||
while (!ans.empty()) { | ||
printf("%d ", ans.back()); | ||
ans.pop_back(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters