結果
問題 | No.1170 Never Want to Walk |
ユーザー | kyoprouno |
提出日時 | 2020-08-14 22:16:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,007 bytes |
コンパイル時間 | 2,194 ms |
コンパイル使用メモリ | 185,892 KB |
実行使用メモリ | 9,600 KB |
最終ジャッジ日時 | 2024-10-10 15:35:41 |
合計ジャッジ時間 | 6,397 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 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 | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 3 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 151 ms
9,472 KB |
testcase_33 | AC | 158 ms
9,216 KB |
testcase_34 | AC | 156 ms
9,472 KB |
testcase_35 | AC | 155 ms
9,472 KB |
testcase_36 | AC | 150 ms
9,216 KB |
testcase_37 | AC | 152 ms
9,216 KB |
testcase_38 | AC | 158 ms
9,600 KB |
ソースコード
#pragma GCC optimize("O3") #include <bits/stdc++.h> #define ll long long #define rep(i,n) for(ll i=0;i<(n);i++) #define pll pair<ll,ll> #define pq priority_queue #define pb push_back #define eb emplace_back #define fi first #define se second #define endl '\n' #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0); #define lb(c,x) distance(c.begin(),lower_bound(all(c),x)) #define ub(c,x) distance(c.begin(),upper_bound(all(c),x)) using namespace std; template<class T> inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;} template<class T> inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} const ll INF=1e9+7; const ll mod=1e9+7; class DisjointSet{ public: vector<ll> rank,p,sz; DisjointSet(){} DisjointSet(ll size){ //作られうる木の頂点数の最大値を入れる。 rank.resize(size,0); p.resize(size,0); sz.resize(size,1); rep(i,size) makeSet(i); } void makeSet(ll x){ //xだけが属する木を作る。 p[x]=x; rank[x]=0; } bool same(ll x,ll y){ //xとyが同じ木に属するかどうか return findSet(x)==findSet(y); } void unite(ll x, ll y){ link(findSet(x),findSet(y)); } void link(ll x, ll y){ //rankが大きい方の根に小さい方の根をつける。 if(rank[x]>rank[y]){ p[y]=x; } else{ p[x]=y; if(rank[x]==rank[y]){ rank[y]++; //xとyの木のrankが同じであれば、統合するとrankが1増える。 } } sz[x]+=sz[y]; sz[y]=sz[x]; } ll findSet(ll x){ //xが属する木の根の番号を返す if(x!=p[x]){ p[x]=findSet(p[x]); } return p[x]; } }; int main() { ll n,a,b; cin >> n >> a >> b; DisjointSet ds=DisjointSet(n+1); vector<ll> x(n); rep(i,n){ cin >> x[i]; } rep(i,n){ auto it1=lower_bound(x.begin(),x.end(),x[i]+a)-x.begin(); auto it2=lower_bound(x.begin(),x.end(),x[i]+b)-x.begin(); auto it3=n; if(i<n-1){ it3=lower_bound(x.begin(),x.end(),x[i+1]+a)-x.begin(); } ll p=min({it2+1LL,it3,n}); for(ll j=it1;j<p;j++){ //cout << i << " " << j <<endl; if(!ds.same(i,j) && abs(x[i]-x[j])>=a && abs(x[i]-x[j])<=b) ds.unite(i,j); } } for(ll i=n-1;i>=0;i--){ auto it1=lower_bound(x.begin(),x.end(),x[i]-a)-x.begin(); auto it2=lower_bound(x.begin(),x.end(),x[i]-b)-x.begin(); auto it3=0LL; if(0<i){ it3=lower_bound(x.begin(),x.end(),x[i-1]-a)-x.begin(); } ll p=max(it2-1LL,it3); p=max(p,0LL); for(ll j=it1;j>=p;j--){ //cout << i << " " << j <<endl; if(!ds.same(i,j) && abs(x[i]-x[j])>=a && abs(x[i]-x[j])<=b) ds.unite(i,j); } } rep(i,n){ cout << ds.sz[ds.findSet(i)] << endl; } return 0; }