結果

問題 No.19 ステージの選択
ユーザー chocoruskchocorusk
提出日時 2018-12-26 17:16:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,250 bytes
コンパイル時間 705 ms
コンパイル使用メモリ 89,308 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-09 02:55:14
合計ジャッジ時間 1,646 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,948 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,948 KB
testcase_08 AC 1 ms
6,948 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,948 KB
testcase_11 AC 2 ms
6,948 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 2 ms
6,948 KB
testcase_16 AC 1 ms
6,948 KB
testcase_17 AC 2 ms
6,948 KB
testcase_18 AC 2 ms
6,948 KB
testcase_19 AC 1 ms
6,948 KB
testcase_20 AC 1 ms
6,948 KB
testcase_21 AC 2 ms
6,948 KB
testcase_22 AC 2 ms
6,948 KB
testcase_23 AC 1 ms
6,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <string>
#include <iostream>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <unordered_map>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
int n;
bool used[101];
int cmp[101];
vector<int> g[101], gr[101];
vector<int> vs;
void dfs(int x){
	used[x]=1;
	for(auto y:g[x]){
		if(!used[y]) dfs(y);
	}
	vs.push_back(x);
}
void rdfs(int v, int k){
	used[v]=1;
	cmp[v]=k;
	for(auto y:gr[v]){
		if(!used[y]) rdfs(y, k);
	}
}
int scc(){
	fill(used, used+n, 0);
	vs.clear();
	for(int i=0; i<n; i++){
		if(!used[i]) dfs(i);
	}
	fill(used, used+n, 0);
	int k=0;
	for(int i=vs.size()-1; i>=0; i--){
		if(!used[vs[i]]) rdfs(vs[i], k++);
	}
	return k;
}
int main()
{
	cin>>n;
	int l[101];
	int ans=0;
	for(int i=0; i<n; i++){
	    int s; cin>>l[i]>>s;
	    ans+=l[i];
	    s--;
	    if(s==i) ans+=l[i];
	    g[s].push_back(i);
	    gr[i].push_back(s);
	}
	int k=scc();
	vector<int> v[101];
	for(int i=0; i<n; i++){
	    v[cmp[i]].push_back(l[i]);
	}
	for(int i=0; i<k; i++){
	    if(v[i].size()>1) ans+=(*min_element(v[i].begin(), v[i].end()));
	}
	printf("%.1lf\n", (double)ans/2);
	return 0;
}
0