結果
問題 | No.1194 Replace |
ユーザー | HIR180 |
提出日時 | 2020-08-22 14:22:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,033 ms / 2,000 ms |
コード長 | 1,894 bytes |
コンパイル時間 | 4,598 ms |
コンパイル使用メモリ | 260,928 KB |
実行使用メモリ | 61,012 KB |
最終ジャッジ日時 | 2024-10-15 08:38:14 |
合計ジャッジ時間 | 19,642 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 643 ms
39,532 KB |
testcase_01 | AC | 704 ms
41,652 KB |
testcase_02 | AC | 539 ms
34,632 KB |
testcase_03 | AC | 438 ms
29,916 KB |
testcase_04 | AC | 734 ms
41,680 KB |
testcase_05 | AC | 638 ms
38,992 KB |
testcase_06 | AC | 581 ms
36,768 KB |
testcase_07 | AC | 1,005 ms
61,004 KB |
testcase_08 | AC | 1,011 ms
60,876 KB |
testcase_09 | AC | 1,026 ms
61,008 KB |
testcase_10 | AC | 1,033 ms
61,000 KB |
testcase_11 | AC | 1,022 ms
61,012 KB |
testcase_12 | AC | 1,015 ms
61,008 KB |
testcase_13 | AC | 519 ms
23,336 KB |
testcase_14 | AC | 437 ms
19,388 KB |
testcase_15 | AC | 378 ms
21,836 KB |
testcase_16 | AC | 513 ms
23,624 KB |
testcase_17 | AC | 350 ms
19,872 KB |
testcase_18 | AC | 333 ms
17,572 KB |
testcase_19 | AC | 508 ms
24,520 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | AC | 134 ms
11,752 KB |
testcase_24 | AC | 43 ms
7,296 KB |
testcase_25 | AC | 15 ms
6,816 KB |
testcase_26 | AC | 152 ms
9,852 KB |
testcase_27 | AC | 24 ms
6,816 KB |
testcase_28 | AC | 66 ms
6,816 KB |
testcase_29 | AC | 8 ms
6,816 KB |
ソースコード
//Let's join Kaede Takagaki Fan Club !! #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; typedef long long ll; typedef pair<int,int> P; typedef pair<int,P> P1; typedef pair<P,P> P2; #define pu push #define pb push_back #define mp make_pair #define eps 1e-7 #define INF 1000000000 #define fi first #define sc second #define rep(i,x) for(int i=0;i<x;i++) #define repn(i,x) for(int i=1;i<=x;i++) #define SORT(x) sort(x.begin(),x.end()) #define ERASE(x) x.erase(unique(x.begin(),x.end()),x.end()) #define POSL(x,v) (lower_bound(x.begin(),x.end(),v)-x.begin()) #define POSU(x,v) (upper_bound(x.begin(),x.end(),v)-x.begin()) #define all(x) x.begin(),x.end() template<class T> void dmp(T a){ rep(i,a.size()) cout << a[i] << " "; cout << endl; } template<class T> bool chmax(T&a, T b){ if(a < b){ a = b; return 1; } return 0; } template<class T> bool chmin(T&a, T b){ if(a > b){ a = b; return 1; } return 0; } template<class T> void g(T &a){ cin >> a; } template<class T> void o(const T &a,bool space=false){ cout << a << (space?' ':'\n'); } //ios::sync_with_stdio(false); const ll mod = 998244353; template<class T> void add(T&a,T b){ a+=b; if(a >= mod) a-=mod; } map<int, int>M; int n, m; map<int, vector<int>>E; vector<int>vec; int main(){ cin >> n >> m; rep(i, m){ int a, b; cin >> a >> b; vec.pb(a); vec.pb(b); E[b].pb(a); } SORT(vec); ERASE(vec); reverse(all(vec)); rep(i, vec.size()){ int q = vec[i]; queue<int>que; que.push(q); while(!que.empty()){ int q = que.front(); que.pop(); if(M.find(q) != M.end()) continue; M[q] = vec[i]; for(auto at:E[q]){ if(M.find(at) == M.end()) que.push(at); } } } ll ans = 1LL*n*(n+1)/2; rep(i, vec.size()) ans += M[vec[i]] - vec[i]; cout << ans << endl; }