結果
問題 | No.849 yuki国の分割統治 |
ユーザー | beet |
提出日時 | 2019-07-05 23:20:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,597 bytes |
コンパイル時間 | 2,376 ms |
コンパイル使用メモリ | 211,208 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-10-06 23:06:54 |
合計ジャッジ時間 | 6,371 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} struct UnionFind{ Int n,num; vector<Int> r,p; UnionFind(){} UnionFind(Int sz):n(sz),num(sz),r(sz,1),p(sz,0){iota(p.begin(),p.end(),0);} Int find(Int x){ return (x==p[x]?x:p[x]=find(p[x])); } bool same(Int x,Int y){ return find(x)==find(y); } void unite(Int x,Int y){ x=find(x);y=find(y); if(x==y) return; if(r[x]<r[y]) swap(x,y); r[x]+=r[y]; p[y]=x; num--; } Int size(Int x){ return r[find(x)]; } Int count() const{ return num; } }; template<typename T> vector<T> compress(vector<T> v){ sort(v.begin(),v.end()); v.erase(unique(v.begin(),v.end()),v.end()); return v; } template<typename T> map<T, Int> dict(const vector<T> &v){ map<T, Int> res; for(Int i=0;i<(Int)v.size();i++) res[v[i]]=i; return res; } //INSERT ABOVE HERE signed main(){ Int a,b,c,d; cin>>a>>b>>c>>d; Int n; cin>>n; vector<Int> xs(n),ys(n); for(Int i=0;i<n;i++) cin>>xs[i]>>ys[i]; UnionFind uf(n); vector<Int> vs; for(Int i=0;i<n;i++){ for(Int v:vs){ Int x=xs[i]-xs[v]; Int y=ys[i]-ys[v]; Int p=(c*y-d*x)/(b*c-a*d); Int q=(a*y-b*x)/(a*d-b*c); if(a*p+c*q==x&&b*p+d*q==y) uf.unite(i,v); } vector<Int> nx; for(Int v:vs) nx.emplace_back(uf.find(v)); nx.emplace_back(uf.find(i)); vs=compress(nx); } cout<<uf.count()<<endl; return 0; }