結果
問題 | No.1194 Replace |
ユーザー | cn_449 |
提出日時 | 2020-08-22 15:04:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,107 ms / 2,000 ms |
コード長 | 1,867 bytes |
コンパイル時間 | 2,004 ms |
コンパイル使用メモリ | 152,828 KB |
実行使用メモリ | 59,776 KB |
最終ジャッジ日時 | 2024-10-15 09:22:14 |
合計ジャッジ時間 | 18,398 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 667 ms
38,400 KB |
testcase_01 | AC | 777 ms
40,448 KB |
testcase_02 | AC | 563 ms
33,664 KB |
testcase_03 | AC | 440 ms
29,184 KB |
testcase_04 | AC | 713 ms
40,576 KB |
testcase_05 | AC | 655 ms
37,888 KB |
testcase_06 | AC | 621 ms
35,712 KB |
testcase_07 | AC | 1,092 ms
59,648 KB |
testcase_08 | AC | 1,107 ms
59,520 KB |
testcase_09 | AC | 1,072 ms
59,648 KB |
testcase_10 | AC | 1,072 ms
59,648 KB |
testcase_11 | AC | 1,068 ms
59,776 KB |
testcase_12 | AC | 1,060 ms
59,648 KB |
testcase_13 | AC | 477 ms
22,016 KB |
testcase_14 | AC | 375 ms
18,176 KB |
testcase_15 | AC | 362 ms
20,992 KB |
testcase_16 | AC | 512 ms
22,400 KB |
testcase_17 | AC | 343 ms
19,200 KB |
testcase_18 | AC | 331 ms
16,640 KB |
testcase_19 | AC | 501 ms
23,296 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | AC | 119 ms
11,520 KB |
testcase_24 | AC | 36 ms
7,040 KB |
testcase_25 | AC | 11 ms
6,816 KB |
testcase_26 | AC | 127 ms
9,344 KB |
testcase_27 | AC | 15 ms
6,816 KB |
testcase_28 | AC | 50 ms
6,820 KB |
testcase_29 | AC | 7 ms
6,820 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <string> #include <queue> #include <stack> #include <set> #include <map> #include <iomanip> #include <utility> #include <tuple> #include <functional> #include <bitset> #include <cassert> #include <complex> #include <stdio.h> #include <time.h> #include <numeric> #include <random> #include <unordered_map> #include <unordered_set> #define all(a) a.begin(),a.end() #define rep(i, n) for (ll i = 0; i < (n); i++) #define pb push_back #define debug(x) cerr << __LINE__ << ' ' << #x << ':' << x << '\n' #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") using namespace std; typedef long long ll; typedef unsigned long long ull; typedef long double ld; typedef pair<ll, ll> P; typedef complex<ld> com; constexpr int inf = 1000000010; constexpr ll INF = 1000000000000000010; constexpr ld eps = 1e-12; constexpr ld pi = 3.141592653589793238; template<class T, class U> inline bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; } template<class T, class U> inline bool chmin(T &a, const U &b) { if (a > b) { a = b; return true; } return false; } int main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); ll n, m; cin >> n >> m; map<int, vector<int>> graph; set<int> st; rep(i, m) { int b, c; cin >> b >> c; graph[c].pb(b); st.insert(c); } map<int, int> val; while (st.size() > 0) { int s = *st.rbegin(); queue<int> que; que.push(s); val[s] = s; st.erase(s); while (!que.empty()) { int p = que.front(); que.pop(); for (int i : graph[p]) { if (val.count(i) == 0) { val[i] = s; que.push(i); st.erase(i); } } } } ll ans = n * (n + 1) / 2; for (auto i : val) { ll x = i.first; ll y = i.second; if (x < y) ans += y - x; } cout << ans << '\n'; }