Recent Posts
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
- 달인막창
- 개성국밥
- VARCHAR (1)
- 코루틴 빌더
- table not found
- kotlin
- JanusWebRTC
- pytest
- tolerated
- python
- Value too long for column
- PytestPluginManager
- mp4fpsmod
- PersistenceContext
- 코루틴 컨텍스트
- vfr video
- 티스토리챌린지
- 오블완
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- Spring Batch
- k8s #kubernetes #쿠버네티스
- JanusWebRTCGateway
- 자원부족
- JanusGateway
- taint
- JanusWebRTCServer
- 깡돼후
- terminal
- 겨울 부산
- preemption #
Archives
너와 나의 스토리
[SW Expert Academy] 9708. 가장 긴 수열 D4 본문
반응형
문제 풀이:
1 ≤ i < K인 i에 대해 $a_i < a_{i+1}$ 이면서, $a_i$이 $a_{i+1}$의 약수여야 한다.
$a_0$, $a_1$, $a_2$가 위 조건을 만족한다면,
$a_0$*k=$a_1$
$a_0$*r=$a_2$ 이다.
즉,
$a_0$를 포함하려면, 각 값들은 $a_0$의 배수인 것!
for문을 돌면서, 현재 arr [i] 값을 약수로 두는 값을 찾기 위해, $a_0$*2, $a_0$*3, $a_0$*4 해가며 해당 위치에서 가능한 가장 긴 수열 길이를 증가시킨다.
소스 코드:
#include <iostream>
#include <cmath>
#include <algorithm>
#include <string>
#include <string.h>
#include <vector>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <stack>
#define inf 987654321
using namespace std;
typedef pair<int, int> P;
typedef long long ll;
int tc, n, res,arr[100001],dp[1000001];
void func(stack<int> st, int pos) {
res = max(res, int(st.size()));
if (pos == n) return;
if (st.empty()||arr[pos] % st.top() == 0) {
st.push(arr[pos]);
return func(st, pos + 1);
}
//선택 안 하기
func(st, pos + 1);
//전 값 지우고, 현재 값 넣기
while (!st.empty()) {
st.pop();
if (arr[pos] % st.top() == 0) {
st.push(arr[pos]);
return func(st, pos + 1);
}
}
st.push(arr[pos]);
return func(st, pos + 1);
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> tc;
for (int i = 1; i <= tc; i++) {
cin >> n ;
stack<int> st;
res = 1;
memset(dp, 0, sizeof(dp));
for (int j = 0; j < n; j++) {
cin >> arr[j];
dp[arr[j]] = 1;
}
sort(arr, arr + n);
for (int i = 0; i < n; i++) {
int tmp = arr[i]+arr[i];
while (tmp <= arr[n - 1]) {
if (dp[tmp]&&tmp % arr[i] == 0) {
dp[tmp] = max(dp[tmp],dp[arr[i]] + 1);
res = max(res, dp[tmp]);
}
tmp += arr[i];
}
}
cout << "#" << i << " " << res<< '\n';
}
return 0;
}
반응형
'Algorithm > 기타' 카테고리의 다른 글
"2018 KAKAO BLIND RECRUITMENT" > [1차] 셔틀버스 (0) | 2020.10.09 |
---|---|
"2018 KAKAO BLIND RECRUITMENT" > [1차] 뉴스 클러스터링 (0) | 2020.10.09 |
[BOJ] 1740 거듭제곱 (0) | 2020.05.23 |
[BOJ] 5525번 IOIOI (0) | 2020.04.07 |
[BOJ] 1541 잃어버린 괄호 (0) | 2020.03.26 |
Comments