結果
問題 | No.1194 Replace |
ユーザー | tnakao0123 |
提出日時 | 2020-08-24 17:50:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 252 ms / 2,000 ms |
コード長 | 1,658 bytes |
コンパイル時間 | 1,047 ms |
コンパイル使用メモリ | 105,516 KB |
実行使用メモリ | 24,072 KB |
最終ジャッジ日時 | 2024-11-06 10:30:53 |
合計ジャッジ時間 | 6,392 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 171 ms
21,672 KB |
testcase_01 | AC | 193 ms
21,932 KB |
testcase_02 | AC | 150 ms
21,056 KB |
testcase_03 | AC | 124 ms
19,828 KB |
testcase_04 | AC | 186 ms
22,172 KB |
testcase_05 | AC | 171 ms
21,660 KB |
testcase_06 | AC | 156 ms
21,020 KB |
testcase_07 | AC | 242 ms
24,020 KB |
testcase_08 | AC | 250 ms
24,072 KB |
testcase_09 | AC | 252 ms
23,856 KB |
testcase_10 | AC | 250 ms
23,920 KB |
testcase_11 | AC | 241 ms
24,064 KB |
testcase_12 | AC | 244 ms
23,996 KB |
testcase_13 | AC | 157 ms
20,820 KB |
testcase_14 | AC | 137 ms
19,936 KB |
testcase_15 | AC | 111 ms
19,828 KB |
testcase_16 | AC | 152 ms
20,624 KB |
testcase_17 | AC | 99 ms
19,400 KB |
testcase_18 | AC | 103 ms
18,992 KB |
testcase_19 | AC | 152 ms
20,656 KB |
testcase_20 | AC | 7 ms
16,000 KB |
testcase_21 | AC | 6 ms
16,604 KB |
testcase_22 | AC | 7 ms
17,448 KB |
testcase_23 | AC | 48 ms
17,560 KB |
testcase_24 | AC | 19 ms
16,920 KB |
testcase_25 | AC | 13 ms
16,168 KB |
testcase_26 | AC | 62 ms
17,600 KB |
testcase_27 | AC | 17 ms
16,224 KB |
testcase_28 | AC | 30 ms
16,996 KB |
testcase_29 | AC | 7 ms
16,952 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 1194.cc: No.1194 Replace - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_M = 200000; const int MAX_K = MAX_M * 2; /* typedef */ typedef long long ll; typedef vector<int> vi; typedef queue<int> qi; typedef pair<int,int> pii; /* global variables */ pii es[MAX_M]; int uvs[MAX_K], mxs[MAX_K]; vi nbrs[MAX_K]; /* subroutines */ /* main */ int main() { int n, m; scanf("%d%d", &n, &m); int k = 0; for (int i = 0; i < m; i++) { int b, c; scanf("%d%d", &b, &c); es[i] = pii(b, c); uvs[k++] = b, uvs[k++] = c; } sort(uvs, uvs + k); k = unique(uvs, uvs + k) - uvs; //printf("k=%d\n", k); for (int i = 0; i < m; i++) { int bi = lower_bound(uvs, uvs + k, es[i].first) - uvs; int ci = lower_bound(uvs, uvs + k, es[i].second) - uvs; nbrs[ci].push_back(bi); } for (int st = k - 1; st >= 0; st--) if (! mxs[st]) { int x = mxs[st] = uvs[st]; qi q; q.push(st); while (! q.empty()) { int u = q.front(); q.pop(); vi &nbru = nbrs[u]; for (vi::iterator vit = nbru.begin(); vit != nbru.end(); vit++) { int v = *vit; if (! mxs[v]) { mxs[v] = x; q.push(v); } } } } ll sum = (ll)n * (n + 1) / 2; for (int i = 0; i < k; i++) sum += mxs[i] - uvs[i]; printf("%lld\n", sum); return 0; }