結果

問題 No.19 ステージの選択
ユーザー t98slidert98slider
提出日時 2022-05-04 08:05:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 656 bytes
コンパイル時間 927 ms
コンパイル使用メモリ 91,360 KB
最終ジャッジ日時 2024-07-03 09:59:12
合計ジャッジ時間 1,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:6:5: error: 'cin' was not declared in this scope
    6 |     cin >> n;
      |     ^~~
main.cpp:2:1: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
    1 | #include <atcoder/all>
  +++ |+#include <iostream>
    2 | using namespace std;

ソースコード

diff #

#include <atcoder/all>
using namespace std;

int main(){
    int n, p;
    cin >> n;
    vector<int> L(n), P(n);
    vector<bool> used(n);
    atcoder::scc_graph g(n);
    for(int i = 0; i < n; i++){
        cin >> L[i] >> P[i];
        g.add_edge(--P[i], i);
    }
    int ans = 0;
    auto G = g.scc();
    for(auto &&a : G){
        bool vis = false;
        for(auto &&v : a){
            if(used[P[v]])vis = true;
        }
        int minv = 400;
        for(auto &&v : a){
            minv = min(minv, L[v]);
            ans += L[v];
            used[v] = true;
        }
        if(!vis)ans += minv;
    }
    printf("%d.%d\n",ans/2,(ans&1?5:0));
}
0