結果
問題 | No.1390 Get together |
ユーザー | auaua |
提出日時 | 2021-02-12 21:33:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 160 ms / 2,000 ms |
コード長 | 1,666 bytes |
コンパイル時間 | 1,673 ms |
コンパイル使用メモリ | 173,096 KB |
実行使用メモリ | 15,360 KB |
最終ジャッジ日時 | 2024-07-19 20:29:37 |
合計ジャッジ時間 | 5,231 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 113 ms
12,732 KB |
testcase_17 | AC | 144 ms
15,232 KB |
testcase_18 | AC | 126 ms
12,728 KB |
testcase_19 | AC | 148 ms
15,224 KB |
testcase_20 | AC | 146 ms
15,360 KB |
testcase_21 | AC | 151 ms
15,232 KB |
testcase_22 | AC | 126 ms
14,496 KB |
testcase_23 | AC | 134 ms
14,360 KB |
testcase_24 | AC | 141 ms
14,372 KB |
testcase_25 | AC | 160 ms
15,232 KB |
testcase_26 | AC | 145 ms
15,216 KB |
testcase_27 | AC | 150 ms
15,356 KB |
testcase_28 | AC | 140 ms
15,232 KB |
testcase_29 | AC | 141 ms
15,232 KB |
testcase_30 | AC | 140 ms
15,232 KB |
testcase_31 | AC | 145 ms
15,360 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 #define double long double typedef long long ll; typedef unsigned long long ull; typedef pair<ll,ll> pll; //typedef long double ld; typedef complex<double> Complex; const ll INF=1e9+7; const ll inf=INF*INF; const ll mod=998244353; const ll MAX=140010; //Union-Find木 struct UnionFind { vector< int > data; UnionFind() = default; explicit UnionFind(size_t sz) : data(sz, -1) {} bool unite(int x, int y) { x = find(x), y = find(y); if(x == y) return false; if(data[x] > data[y]) swap(x, y); data[x] += data[y]; data[y] = x; return true; } int find(int k) { if(data[k] < 0) return (k); return data[k] = find(data[k]); } int size(int k) { return -data[find(k)]; } bool same(int x, int y) { return find(x) == find(y); } }; signed main(){ ll n,m;cin>>n>>m; UnionFind uf(m); vector<vector<ll> >box(n); rep(i,n){ ll b,c;cin>>b>>c; c--; b--; box[c].pb(b); } rep(i,n){ REP(j,1,box[i].size()){ uf.unite(box[i][j],box[i][j-1]); } } vector<ll>used(m); ll cnt=0; rep(i,m){ if(used[uf.find(i)])continue; used[uf.find(i)]=1; cnt++; } cout<<m-cnt<<endl; }