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 |
Tags
- JanusWebRTCServer
- 오블완
- 티스토리챌린지
- JanusGateway
- 겨울 부산
- terminal
- tolerated
- pytest
- addhooks
- Spring Batch
- mp4fpsmod
- taint
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- 자원부족
- 코루틴 빌더
- JanusWebRTC
- 달인막창
- preemption #
- kotlin
- PersistenceContext
- 깡돼후
- vfr video
- PytestPluginManager
- 개성국밥
- JanusWebRTCGateway
- table not found
- 코루틴 컨텍스트
- VARCHAR (1)
- Value too long for column
- python
Archives
너와 나의 스토리
[BOJ] 16287 Parcel 본문
반응형
문제: https://www.acmicpc.net/problem/16287
문제 풀이:
풀이 1:
O($N^{2}$)으로 값 2개의 합을 벡터에 저장한다. 이때, 2개의 합은 최대 400000이므로 크기만큼 미리 벡터를 선언해줄 수 있다. 2개를 합친 값이 동일한 것이 여러개 있을 수 있으므로 각 값의 위치를 저장해준다.
2~400000(2개 합쳐서 나올 수 있는 값)들을 다 보며, 지금 값이 존재하고 (총 무게-현재 2개 합)도 존재할 때, (i,j) 서로 다른 두 쌍을 가지고 있다면 yes를 출력하고 종료한다.
풀이2:
풀이1처럼 풀면 굉장히 오래걸린다. 각 두 쌍에 겹치는게 있는지 확인하는 과정이 오래 걸린거였는데 이렇게 해결할 수 있다.
이중 포문 i, j로 돌려서 2개 합을 구할 때, dp[두개 합]=j 를 저장해두고 다음에 dp[전체 합-해당 값]이 현재 i보다 값이 작으면 현재 i, j 겹치지 않는다고 판단할 수 있다.
소스코드:
풀이 1:
#include <iostream>
#include <algorithm>
#include <stack>
#include <string>
#include <map>
#include <vector>
#include <functional>
#include <unordered_map>
#include <queue>
#include <string.h>
#include <cmath>
using namespace std;
typedef pair<int, int> P;
int weight, n,arr[5001];
vector<vector<P>> v(400002);
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
cin >> weight >> n;
for (int i = 0; i < n; i++) {
cin >> arr[i];
}
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
v[arr[i] + arr[j]].push_back({ i, j });
}
}
for (int i = 2; i < 400000; i++) {
if (v[i].size() == 0) continue;
int w = weight - i;
if (w < 0||w>400000||v[w].size()==0) continue;
for (auto k : v[i]) {
for (auto j : v[w]) {
if (k.first == j.first) break;
else if (k.first == j.second) break;
else if (k.second == j.first) break;
else if (k.second == j.second) break;
else {
cout << "YES\n";
return 0;
}
}
}
}
cout << "NO\n";
return 0;
}
풀이2:
#include <iostream>
#include <algorithm>
#include <stack>
#include <string>
#include <map>
#include <vector>
#include <functional>
#include <unordered_map>
#include <queue>
#include <string.h>
#include <cmath>
using namespace std;
typedef pair<int, int> P;
int weight, n,arr[5001],dp[400002];
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
cin >> weight >> n;
for (int i = 0; i < n; i++) {
cin >> arr[i];
}
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
int sum = arr[i] + arr[j];
int w = weight - sum;
if (w < 0 || w>400000) continue;
if (dp[w] && dp[w] < i) {
cout << "YES\n";
return 0;
}
dp[sum] = j;
}
}
cout << "NO\n";
return 0;
}
반응형
'Algorithm > 기타' 카테고리의 다른 글
[BOJ] 1687 행렬 찾기 (0) | 2019.11.22 |
---|---|
[BOJ] 13560 축구 (0) | 2019.10.03 |
[SW] 7829 보물왕 태혁 (D4) (0) | 2019.09.09 |
(BOJ) 9934 완전 이진 트리 (0) | 2019.07.31 |
(BOJ) 1965 상자 넣기 (0) | 2019.07.18 |
Comments