結果
問題 | No.1170 Never Want to Walk |
ユーザー | poohbear |
提出日時 | 2020-08-14 23:19:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,741 bytes |
コンパイル時間 | 2,259 ms |
コンパイル使用メモリ | 205,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-10 16:45:49 |
合計ジャッジ時間 | 8,673 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
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 | 4 ms
5,248 KB |
testcase_23 | AC | 4 ms
5,248 KB |
testcase_24 | AC | 4 ms
5,248 KB |
testcase_25 | AC | 5 ms
5,248 KB |
testcase_26 | AC | 4 ms
5,248 KB |
testcase_27 | AC | 349 ms
5,632 KB |
testcase_28 | AC | 343 ms
5,632 KB |
testcase_29 | AC | 356 ms
5,504 KB |
testcase_30 | AC | 357 ms
5,632 KB |
testcase_31 | AC | 346 ms
5,504 KB |
testcase_32 | TLE | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(a,n) for (ll a = 0; a < (n); ++a) using namespace std; typedef long long ll; using ll = long long; typedef pair<ll,ll> P; typedef pair<P,ll> PP; using Graph = vector<vector<ll> >; 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 = 1e18; //UnionFind struct UnionFind { vector<int> par; // par[i]:iの親の番号 (例) par[3] = 2 : 3の親が2 UnionFind(int n) : par(n, -1) { } int root(int x) { // データxが属する木の根を再帰で得る:root(x) = {xの木の根} if (par[x] < 0) return x; return par[x] = root(par[x]); } bool merge(int x, int y) {//xの木とyの木を結合する x = root(x); y = root(y); if (x == y) return false; if (par[x] > par[y]) swap(x, y); // merge technique par[x] += par[y]; par[y] = x; return true; } int size(int x) {//sizeの取得 return -par[root(x)]; } bool same(int x, int y) { // 2つのデータx, yが属する木が同じならtrueを返す int rx = root(x); int ry = root(y); return rx == ry; } }; //input ll n,a,b; vector<ll>x; int main(){ cin >> n >> a >> b; x.resize(n); rep(i,n)cin>>x[i]; UnionFind u(n+1); for(int i=n-1;i>=0;i--){ ll r = lower_bound(x.begin(),x.end(),x[i]+b)-x.begin(); ll l = lower_bound(x.begin(),x.end(),x[i]+a)-x.begin(); if(l==n)continue; for(int j=l;j<r;j++){ u.merge(i,j); } } rep(i,n){ cout << u.size(i) << endl; } return 0; }