結果
問題 | No.1194 Replace |
ユーザー | auaua |
提出日時 | 2020-08-22 17:23:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,923 ms / 2,000 ms |
コード長 | 1,669 bytes |
コンパイル時間 | 2,211 ms |
コンパイル使用メモリ | 188,324 KB |
実行使用メモリ | 98,560 KB |
最終ジャッジ日時 | 2024-10-15 11:16:43 |
合計ジャッジ時間 | 31,606 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,256 ms
65,280 KB |
testcase_01 | AC | 1,368 ms
69,120 KB |
testcase_02 | AC | 1,039 ms
56,704 KB |
testcase_03 | AC | 824 ms
48,768 KB |
testcase_04 | AC | 1,355 ms
69,248 KB |
testcase_05 | AC | 1,301 ms
64,512 KB |
testcase_06 | AC | 1,164 ms
60,544 KB |
testcase_07 | AC | 1,892 ms
98,560 KB |
testcase_08 | AC | 1,892 ms
98,304 KB |
testcase_09 | AC | 1,923 ms
98,560 KB |
testcase_10 | AC | 1,877 ms
98,560 KB |
testcase_11 | AC | 1,887 ms
98,560 KB |
testcase_12 | AC | 1,923 ms
98,560 KB |
testcase_13 | AC | 1,084 ms
43,776 KB |
testcase_14 | AC | 894 ms
37,120 KB |
testcase_15 | AC | 747 ms
37,504 KB |
testcase_16 | AC | 1,044 ms
43,264 KB |
testcase_17 | AC | 655 ms
34,304 KB |
testcase_18 | AC | 638 ms
31,616 KB |
testcase_19 | AC | 1,049 ms
44,544 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 | 266 ms
18,688 KB |
testcase_24 | AC | 69 ms
9,728 KB |
testcase_25 | AC | 26 ms
5,248 KB |
testcase_26 | AC | 310 ms
17,792 KB |
testcase_27 | AC | 40 ms
5,760 KB |
testcase_28 | AC | 118 ms
10,368 KB |
testcase_29 | AC | 11 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long #define REP(i,m,n) for(int i=(m);i<(n);i++) #define rep(i,n) REP(i,0,n) #define pb push_back #define all(a) a.begin(),a.end() #define rall(c) (c).rbegin(),(c).rend() #define mp make_pair #define endl '\n' #define vec vector<ll> #define mat vector<vector<ll> > #define fi first #define se second typedef long long ll; typedef unsigned long long ull; typedef pair<ll,ll> pll; typedef long double ld; typedef complex<double> comp; const ll inf=1e9+7; const ll mod=998244353; const int MAX=300010; signed main(){ ll n,m;cin>>n>>m; map<ll,ll>idx; map<ll,ll>inv; map<ll,ll>con; vector<vector<ll> >G(2*m); ll now=0; vector<ll>q(m); rep(i,m){ ll b,c;cin>>b>>c; con[b]=b; con[c]=c; q[i]=c; if(idx.find(c)==idx.end()){ idx[c]=now; now++; } if(idx.find(b)==idx.end()){ idx[b]=now; now++; } inv[idx[c]]=c; inv[idx[b]]=b; G[idx[c]].pb(idx[b]); } sort(rall(q)); vector<ll>used(2*m); rep(i,m){ if(used[idx[q[i]]])continue; ll c=q[i]; queue<ll>q; used[idx[c]]=1; q.push(idx[c]); while(!q.empty()){ ll k=q.front(); q.pop(); //cout<<inv[k]<<' '<<c<<endl; for(auto e:G[k]){ if(used[e])continue; con[inv[e]]=max(con[inv[e]],c); used[e]=1; q.push(e); } } } ll ans=n*(n+1)/2; for(auto e:con){ ans+=e.se-e.fi; } cout<<ans<<endl; }