結果
問題 | No.1170 Never Want to Walk |
ユーザー | leaf_1415 |
提出日時 | 2020-08-14 21:39:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,832 bytes |
コンパイル時間 | 1,106 ms |
コンパイル使用メモリ | 97,908 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-10-10 14:42:12 |
合計ジャッジ時間 | 6,891 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 3 ms
6,816 KB |
testcase_05 | AC | 3 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 3 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 3 ms
6,820 KB |
testcase_16 | AC | 3 ms
6,820 KB |
testcase_17 | AC | 3 ms
6,820 KB |
testcase_18 | AC | 3 ms
6,816 KB |
testcase_19 | AC | 3 ms
6,820 KB |
testcase_20 | AC | 3 ms
6,816 KB |
testcase_21 | AC | 3 ms
6,816 KB |
testcase_22 | AC | 6 ms
6,816 KB |
testcase_23 | AC | 4 ms
6,816 KB |
testcase_24 | AC | 7 ms
6,820 KB |
testcase_25 | AC | 6 ms
6,816 KB |
testcase_26 | AC | 5 ms
6,820 KB |
testcase_27 | AC | 218 ms
17,664 KB |
testcase_28 | AC | 216 ms
17,280 KB |
testcase_29 | AC | 223 ms
17,792 KB |
testcase_30 | AC | 222 ms
17,664 KB |
testcase_31 | AC | 216 ms
17,408 KB |
testcase_32 | TLE | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <ctime> #include <cstdlib> #include <cassert> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> #include <string> #include <algorithm> #include <utility> #define llint long long #define inf 1e18 #define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++) #define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++) #define chmin(x, y) (x) = min((x), (y)) #define chmax(x, y) (x) = max((x), (y)) using namespace std; typedef pair<llint, llint> P; struct UnionFind{ int size; vector<int> parent; UnionFind(){} UnionFind(int size){ this->size = size; parent.resize(size+1); init(); } void init(){ for(int i = 0; i <= size; i++) parent[i] = i; } int root(int i){ if(parent[i] == i) return i; return parent[i] = root(parent[i]); } bool same(int i, int j){ return root(i) == root(j); } void unite(int i, int j){ int root_i = root(i), root_j = root(j); if(root_i == root_j) return; parent[root_i] = root_j; } }; llint n, a, b; llint x[200005]; set<P> S; UnionFind uf(200005); map<llint, llint> mp; int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> n >> a >> b; for(int i = 1; i <= n; i++) cin >> x[i]; for(llint i = 1; i <= n; i++){ auto it = S.lower_bound(P(x[i]-b, -inf)); llint mn = inf, mx = -inf; for(;it != S.end() && it->first <= x[i]-a; it++){ uf.unite(it->second, i); mn = min(mn, i), mx = max(mx, i); } for(;it != S.end() && it->first <= x[i]-a; it++) S.erase(it); if(mn < inf/2){ S.insert(P(x[mn], mn)); S.insert(P(x[mx], mx)); } S.insert(P(x[i], i)); } for(int i = 1; i <= n; i++) mp[uf.root(i)]++; for(int i = 1; i <= n; i++) cout << mp[uf.root(i)] << "\n"; flush(cout); return 0; }