結果
問題 | No.1170 Never Want to Walk |
ユーザー | NewGarden |
提出日時 | 2020-08-14 21:58:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,241 bytes |
コンパイル時間 | 1,210 ms |
コンパイル使用メモリ | 124,396 KB |
実行使用メモリ | 13,636 KB |
最終ジャッジ日時 | 2024-10-10 15:10:45 |
合計ジャッジ時間 | 6,227 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,820 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 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 4 ms
6,816 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | TLE | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
#include<iostream> #include<string> #include<algorithm> #include<vector> #include<iomanip> #include<math.h> #include<complex> #include<queue> #include<deque> #include<stack> #include<map> #include<set> #include<bitset> #include<functional> #include<assert.h> #include<numeric> using namespace std; typedef pair<int,int> P; typedef long long ll; typedef long double ld; const int inf=1e9+7; const ll longinf=1LL<<60; #define REP(i,m,n) for(ll i=(int)(m) ; i < (int) (n) ; ++i ) #define rep(i,n) REP(i,0,n) #define F first #define S second constexpr char ln = '\n'; const int mx=100010; const ll mod=1e9+7; struct UnionFind { vector<int> par,sizes; // par[i]:iの親の番号(ex)par[3]=2 : 3の親が2 UnionFind(int n) : par(n),sizes(n,1) { //最初は全てが根であるとして初期化 for(int i=0; i<n; i++){ par[i]=i; } } int root(int x) { //xが属する木の根を再帰で得る:root(x)={xの木の根} if(par[x]==x){ return x; } return par[x] = root(par[x]); } void unite(int x, int y) { // xとyの木を併合 int rx = root(x); //xの根をrx int ry = root(y); //yの根をry if(rx == ry){ return; } //xとyの根が同じ(=同じ木にある)時はそのまま if(sizes[rx]<sizes[ry]){ swap(rx, ry); } //xの木をおおきくする par[ry] = rx; sizes[rx] += sizes[ry]; //sizes[ry]はもう使わない } bool check(int x, int y) { // x,yが属する木が同じならtrueを返す return root(x) == root(y); } int size(int x){ //xが含まれる木の大きさを返す return sizes[root(x)]; } }; int main(){ ll n,a,b; cin >> n >> a >> b; vector<ll> x(n); rep(i,n){ cin >> x[i]; } UnionFind uf(n); for(int i=0,j=1,k=1; i<n-1; i++) { while(j!=n && a > abs(x[i]-x[j])){ j++; } if(j==n) break; while(k!=n && abs(x[i]-x[k])<=b){ k++; } k--; if(a <= abs(x[i]-x[j]) && abs(x[i]-x[k]) <= b){ REP(t,j,k+1){ uf.unite(i,t); } } } rep(i,n){ cout << uf.size(i) << ln; } return 0; }