https://www.acmicpc.net/problem/2637
[난이도] Gold2
[유형] 위상정렬
[풀이]
N(완성품을) 시작점으로 해서 위상정렬을 하면서 필요한 부품의 갯수를 곱해가면 답을 구할 수 있다.
#include <cstdio>
#include <vector>
#include <queue>
#include <algorithm>
using namespace std;
int N,M;
vector<pair<int,int>> adj[101];
int in[101],cnt[101];
int main(){
scanf("%d%d",&N,&M);
for(int i=0;i<M;i++){
int x,y,k;
scanf("%d%d%d",&x,&y,&k);
adj[x].push_back({y,k});
in[y]++;
}
vector<int> ans;
queue<int> q;
q.push(N);
cnt[N]=1;
while(!q.empty()){
int cur=q.front(); q.pop();
if(adj[cur].empty()){
ans.push_back(cur);
}
for(auto p : adj[cur]){
int nxt=p.first;
int c=p.second;
cnt[nxt]+=cnt[cur]*c;
if(--in[nxt]==0) q.push(nxt);
}
}
sort(ans.begin(),ans.end());
for(auto k : ans) printf("%d %d\n",k,cnt[k]);
}
https://github.com/has2/Problem-Solving/blob/master/boj-solved.ac/Gold2/2637.cpp
'Problem-Solving > BOJ' 카테고리의 다른 글
[BOJ/백준][Gold2] 10423 : 전기가 부족해 (C++) (0) | 2021.03.25 |
---|---|
[BOJ/백준][Gold2] 1670 : 정상 회담 2 (C++) (0) | 2021.03.15 |
[BOJ/백준][Gold2] 15653 : 구슬 탈출 4 (C++) (0) | 2021.03.15 |
[BOJ/백준][Gold2] 13334 : 철로 (C++) (0) | 2021.03.15 |
[BOJ/백준][Gold2] 2515 : 전시장 (C++) (0) | 2021.03.15 |