結果
問題 | No.2563 色ごとのグループ |
ユーザー |
![]() |
提出日時 | 2023-12-02 15:24:37 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 213 ms / 2,000 ms |
コード長 | 1,676 bytes |
コンパイル時間 | 5,529 ms |
コンパイル使用メモリ | 309,828 KB |
実行使用メモリ | 13,568 KB |
最終ジャッジ日時 | 2024-09-26 18:38:27 |
合計ジャッジ時間 | 9,557 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 35 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using namespace std; using mint = modint998244353; using ll = long long; using lb = long double; using VI = vector<int>; using VL = vector<ll>; using P = pair<int, int>; inline void scan(){} template<class Head,class... Tail> inline void scan(Head&head,Tail&... tail){std::cin>>head;scan(tail...);} #define LL(...) ll __VA_ARGS__;scan(__VA_ARGS__) #define LB(...) lb __VA_ARGS__;scan(__VA_ARGS__) #define INT(...) int __VA_ARGS__;scan(__VA_ARGS__) #define STR(...) string __VA_ARGS__;scan(__VA_ARGS__) template<class ll> inline bool chmax(ll& a, ll b) { if (a < b) { a = b; return 1; } return 0; }template<class ll> inline bool chmin(ll& a, ll b) { if (a > b) { a = b; return 1; } return 0; } template<typename T> std::istream &operator>>(std::istream&is,std::vector<T>&v){for(T &in:v){is>>in;}return is;} template<typename T> std::ostream &operator<<(std::ostream&os,const std::vector<T>&v){for(auto it=std::begin(v);it!=std::end(v);){os<<*it<<((++it)!=std::end(v)?" ":"");}return os;} #define rep(i, s, n) for (int i = (s); i < (int)(n); i++) #define ALL(a) (a).begin(),(a).end() #define RALL(a) (a).rbegin(),(a).rend() const int inf = INT_MAX / 2; const ll infl = 1LL << 60; //_ int main(){ INT(n, m); vector<int> c(n); cin >> c; dsu uf(n); rep(i, 0, m){ INT(u, v); u--; v--; if(c[u] == c[v])uf.merge(u, v); } vector<vector<int>> g(n); rep(i, 0, n){ g[c[i] - 1].push_back(i); } int ans = 0; rep(i, 0, n){ rep(j, 1, size(g[i])){ if(!uf.same(g[i][0], g[i][j])){ uf.merge(g[i][0], g[i][j]); ans++; } } } cout << ans << endl; }