結果
| 問題 |
No.1170 Never Want to Walk
|
| コンテスト | |
| ユーザー |
yakki
|
| 提出日時 | 2020-08-14 22:09:53 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 780 ms / 2,000 ms |
| コード長 | 2,228 bytes |
| コンパイル時間 | 2,072 ms |
| コンパイル使用メモリ | 124,424 KB |
| 最終ジャッジ日時 | 2025-01-12 23:58:08 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 37 |
ソースコード
#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<bitset>
#include<set>
#include<map>
#include<stack>
#include<queue>
#include<deque>
#include<list>
#include<iomanip>
#include<cmath>
#include<cstring>
#include<functional>
#include<cstdio>
#include<cstdlib>
using namespace std;
#define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++)
#define rep(i, n) repr(i, 0, n)
#define INF 2e9
#define MOD 1000000007
//#define MOD 998244353
#define LINF (long long)4e18
#define jck 3.141592
const double EPS = 1e-10;
using ll = long long;
using Pi = pair<int,int>;
using Pl = pair<ll,ll>;
class DisjointSet{
public:
vector<ll> rank,p,siz;
DisjointSet(){}
DisjointSet(ll size){
rank.resize(size,0);
p.resize(size,0);
siz.resize(size,1);
rep(i,size) makeSet(i);
}
void makeSet(ll x){
p[x] = x;
rank[x] = 0;
}
bool same(ll x, ll y){
return root(x) == root(y);
}
void unite(ll x, ll y){
x = root(x);
y = root(y);
if(rank[x] > rank[y]){
siz[x] += siz[y];
p[y] = x;
}
else{
siz[y] += siz[x];
p[x] = y;
if(rank[x] == rank[y]) rank[y]++;
}
}
ll root(ll x){
if(x != p[x]){
p[x] = root(p[x]);
}
return p[x];
}
ll size(ll x){
return siz[root(x)];
}
};
int main(){
int n,a,b; cin >> n >> a >> b;
vector<int> x(n);
rep(i,n) cin >> x[i];
DisjointSet uf(n);
int nowmax = 0;
rep(i,n){
int d = upper_bound(x.begin(),x.end(),x[i]+b)-x.begin();
int d2 = lower_bound(x.begin(),x.end(),x[i]+a)-x.begin();
if(d2 < nowmax){
repr(j,nowmax-1,d){
if(!uf.same(i,j)) uf.unite(i,j);
}
}
else{
repr(j,d2,d){
if(!uf.same(i,j)) uf.unite(i,j);
}
}
nowmax = max(nowmax,d);
}
rep(i,n){
cout << uf.size(i) << endl;
}
}
yakki