結果

問題 No.1194 Replace
ユーザー milanis48663220milanis48663220
提出日時 2020-08-23 23:10:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 927 ms / 2,000 ms
コード長 828 bytes
コンパイル時間 1,082 ms
コンパイル使用メモリ 99,016 KB
実行使用メモリ 61,036 KB
最終ジャッジ日時 2024-10-15 19:26:28
合計ジャッジ時間 14,640 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 525 ms
39,748 KB
testcase_01 AC 562 ms
42,144 KB
testcase_02 AC 419 ms
34,600 KB
testcase_03 AC 342 ms
29,952 KB
testcase_04 AC 593 ms
42,040 KB
testcase_05 AC 546 ms
39,220 KB
testcase_06 AC 481 ms
36,992 KB
testcase_07 AC 896 ms
60,908 KB
testcase_08 AC 927 ms
61,028 KB
testcase_09 AC 910 ms
60,904 KB
testcase_10 AC 883 ms
61,036 KB
testcase_11 AC 856 ms
60,904 KB
testcase_12 AC 872 ms
61,028 KB
testcase_13 AC 406 ms
24,720 KB
testcase_14 AC 321 ms
21,096 KB
testcase_15 AC 284 ms
22,156 KB
testcase_16 AC 393 ms
24,756 KB
testcase_17 AC 263 ms
20,064 KB
testcase_18 AC 242 ms
18,392 KB
testcase_19 AC 393 ms
25,560 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 102 ms
11,796 KB
testcase_24 AC 31 ms
7,296 KB
testcase_25 AC 10 ms
5,248 KB
testcase_26 AC 110 ms
10,820 KB
testcase_27 AC 15 ms
5,248 KB
testcase_28 AC 44 ms
7,060 KB
testcase_29 AC 6 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;

ll N, M;
map<ll, vector<ll>> G;
set<ll> used;
ll ans;

bool is_used(ll m){
    return used.count(m) > 0;
}

void dfs(ll v, ll r){
    used.insert(v);
    if(r > v) ans += r-v;
    for(ll to : G[v]){
        if(!is_used(to)) dfs(to, r);
    }
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    cin >> N >> M;
    vector<ll> v;
    for(int i = 0; i < M; i++){
        ll b, c; cin >> b >> c;
        G[c].push_back(b);
        v.push_back(c);
    }
    ans = (N*(N+1))/2;
    sort(v.begin(), v.end(), greater<ll>());
    for(ll i : v) {
        if(!is_used(i)) dfs(i, i);
    }
    cout << ans << endl;
}
0