結果
問題 | No.1194 Replace |
ユーザー | otera |
提出日時 | 2020-08-25 06:55:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 418 ms / 2,000 ms |
コード長 | 3,702 bytes |
コンパイル時間 | 1,755 ms |
コンパイル使用メモリ | 145,880 KB |
実行使用メモリ | 88,308 KB |
最終ジャッジ日時 | 2024-11-06 11:00:32 |
合計ジャッジ時間 | 9,703 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 289 ms
59,064 KB |
testcase_01 | AC | 310 ms
62,292 KB |
testcase_02 | AC | 241 ms
51,856 KB |
testcase_03 | AC | 204 ms
44,116 KB |
testcase_04 | AC | 308 ms
62,472 KB |
testcase_05 | AC | 283 ms
59,444 KB |
testcase_06 | AC | 271 ms
54,720 KB |
testcase_07 | AC | 408 ms
88,148 KB |
testcase_08 | AC | 418 ms
87,568 KB |
testcase_09 | AC | 416 ms
87,760 KB |
testcase_10 | AC | 415 ms
87,936 KB |
testcase_11 | AC | 415 ms
87,812 KB |
testcase_12 | AC | 418 ms
88,308 KB |
testcase_13 | AC | 270 ms
40,308 KB |
testcase_14 | AC | 232 ms
34,104 KB |
testcase_15 | AC | 196 ms
35,156 KB |
testcase_16 | AC | 264 ms
39,992 KB |
testcase_17 | AC | 180 ms
32,256 KB |
testcase_18 | AC | 181 ms
29,884 KB |
testcase_19 | AC | 263 ms
41,188 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 2 ms
6,816 KB |
testcase_23 | AC | 73 ms
17,720 KB |
testcase_24 | AC | 24 ms
8,944 KB |
testcase_25 | AC | 11 ms
6,820 KB |
testcase_26 | AC | 92 ms
16,244 KB |
testcase_27 | AC | 17 ms
6,820 KB |
testcase_28 | AC | 42 ms
9,696 KB |
testcase_29 | AC | 6 ms
6,816 KB |
ソースコード
/** * author: otera **/ #include<iostream> #include<string> #include<cstdio> #include<cstring> #include<vector> #include<cmath> #include<algorithm> #include<functional> #include<iomanip> #include<queue> #include<deque> #include<ciso646> #include<random> #include<map> #include<set> #include<complex> #include<bitset> #include<stack> #include<unordered_map> #include<unordered_set> #include<utility> #include<cassert> using namespace std; #define int long long typedef long long ll; typedef unsigned long long ul; typedef unsigned int ui; typedef long double ld; const int inf=1e9+7; const ll INF=1LL<<60 ; const ll mod=1e9+7 ; #define rep(i,n) for(int i=0;i<n;i++) #define per(i,n) for(int i=n-1;i>=0;i--) #define Rep(i,sta,n) for(int i=sta;i<n;i++) #define rep1(i,n) for(int i=1;i<=n;i++) #define per1(i,n) for(int i=n;i>=1;i--) #define Rep1(i,sta,n) for(int i=sta;i<=n;i++) typedef complex<ld> Point; const ld eps = 1e-8; const ld pi = acos(-1.0); typedef pair<int, int> P; typedef pair<ld, ld> LDP; typedef pair<ll, ll> LP; #define fr first #define sc second #define all(c) c.begin(),c.end() #define pb push_back #define debug(x) cerr << #x << " = " << (x) << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<typename T> vector<T> compress(vector<T> A){ sort(A.begin(), A.end()); A.erase(unique(A.begin(), A.end()), A.end()); return A; } template< typename G > struct StronglyConnectedComponents { const G &g; vector<vector<int>> gg, rg; vector< int > comp, order, used; StronglyConnectedComponents(G &g) : g(g), gg(g.size()), rg(g.size()), comp(g.size(), -1), used(g.size()) { for(int i = 0; i < g.size(); i++) { for(auto e : g[i]) { gg[i].emplace_back((int) e); rg[(int) e].emplace_back(i); } } } int operator[](int k) { return comp[k]; } void dfs(int idx) { if(used[idx]) return; used[idx] = true; for(int to : gg[idx]) dfs(to); order.push_back(idx); } void rdfs(int idx, int cnt) { if(comp[idx] != -1) return; comp[idx] = cnt; for(int to : rg[idx]) rdfs(to, cnt); } void build(vector<vector<int>> &t) { for(int i = 0; i < gg.size(); i++) dfs(i); reverse(begin(order), end(order)); int ptr = 0; for(int i : order) if(comp[i] == -1) rdfs(i, ptr), ptr++; t.resize(ptr); for(int i = 0; i < g.size(); i++) { for(auto &to : g[i]) { int x = comp[i], y = comp[to]; if(x == y) continue; t[x].push_back(y); } } } }; void solve() { int n, m; cin >> n >> m; vector<int> x; vector<int> b(m), c(m); rep(i, m) { cin >> b[i] >> c[i]; x.pb(b[i]), x.pb(c[i]); } auto comp = compress(x); int sz = (int)comp.size(); vector<vector<int>> g(sz, vector<int>()); rep(i, m) { int be = lower_bound(all(comp), b[i]) - comp.begin(); int ce = lower_bound(all(comp), c[i]) - comp.begin(); g[be].pb(ce); } StronglyConnectedComponents<vector<vector<int>>> scc(g); vector<vector<int>> t; scc.build(t); vector<int> dp(sz, 0); rep(i, sz) { chmax(dp[scc[i]], comp[i]); } for(int i = (int)t.size() - 1; i >= 0; -- i) { for(int j: t[i]) { chmax(dp[i], dp[j]); } } int ans = n * (n + 1) / 2; rep(i, sz) { ans += dp[scc[i]] - comp[i]; } cout << ans << endl; } signed main() { ios::sync_with_stdio(false); cin.tie(0); //cout << fixed << setprecision(10); //int t; cin >> t; rep(i, t)solve(); solve(); return 0; }