코딩스토리

백준 2056번 - 작업 본문

알고리즘/BOJ 문제 풀이

백준 2056번 - 작업

kimtaehyun98 2021. 1. 1. 17:36

www.acmicpc.net/problem/2056

 

2056번: 작업

수행해야 할 작업 N개 (3 ≤ N ≤ 10000)가 있다. 각각의 작업마다 걸리는 시간(1 ≤ 시간 ≤ 100)이 정수로 주어진다. 몇몇 작업들 사이에는 선행 관계라는 게 있어서, 어떤 작업을 수행하기 위해

www.acmicpc.net

기초적인 DP 문제였다.

인접리스트를 사용하는게 해결 방법이였다.

 

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
32
33
34
#include <iostream>
#include <vector>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long ll;
 
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int t, n, x;
    int time[10004];
    vector<int>must[10004];
    int dp[10004];
    cin >> t;
    for (int i = 0; i < t; i++) {
        cin >> time[i] >> n;
        for (int j = 0; j < n; j++) {
            cin >> x;
            must[i].push_back(x);
        }
    }
    int ans = 0;
    for (int i = 0; i < t; i++) {
        int s = must[i].size();
        int max_num = 0;
        for (int k = 0; k < s; k++) {
            max_num = max(max_num, dp[must[i][k] - 1]);
        }
        dp[i] = max_num + time[i];
        ans = max(ans, dp[i]);
    }
    cout << ans << "\n";
}
cs

골드 4 치고는 어렵지 않은 문제였다. 한 실버 1정도 난이도 인듯..

Comments