結果
問題 | No.1170 Never Want to Walk |
ユーザー | cookiedoth |
提出日時 | 2020-08-14 22:10:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,470 bytes |
コンパイル時間 | 1,460 ms |
コンパイル使用メモリ | 136,944 KB |
実行使用メモリ | 15,232 KB |
最終ジャッジ日時 | 2024-10-10 15:28:28 |
合計ジャッジ時間 | 4,783 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
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 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
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 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
/* Code for problem C by cookiedoth Generated 14 Aug 2020 at 04.04 PM ▅███████ ]▄▄▄▄▄▄▄ █████████▅▄▃ Il████████████████] ◥⊙▲⊙▲⊙▲⊙▲⊙▲⊙▲⊙◤ o_O -_- ~_^ */ #include <iostream> #include <fstream> #include <vector> #include <set> #include <map> #include <bitset> #include <algorithm> #include <iomanip> #include <cmath> #include <ctime> #include <functional> #include <unordered_set> #include <unordered_map> #include <string> #include <queue> #include <deque> #include <stack> #include <complex> #include <cassert> #include <random> #include <cstring> #include <numeric> #define ll long long #define ld long double #define null NULL #define all(a) a.begin(), a.end() #define rall(a) a.rbegin(), a.rend() #define debug(a) cerr << #a << " = " << a << endl #define forn(i, n) for (int i = 0; i < n; ++i) using namespace std; template<class T> int chkmax(T &a, T b) { if (b > a) { a = b; return 1; } return 0; } template<class T> int chkmin(T &a, T b) { if (b < a) { a = b; return 1; } return 0; } template<class iterator> void output(iterator begin, iterator end, ostream& out = cerr) { while (begin != end) { out << (*begin) << " "; begin++; } out << endl; } template<class T> void output(T x, ostream& out = cerr) { output(x.begin(), x.end(), out); } void fast_io() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); } const int mx = 2e5 + 228; int n, a, b, x[mx], par[mx], sz[mx]; set<int> not_joined; int get_root(int v) { return (par[v] == v ? v : par[v] = get_root(par[v])); } void join(int u, int v) { u = get_root(u); v = get_root(v); par[u] = v; sz[v] += sz[u]; } void read() { cin >> n >> a >> b; for (int i = 0; i < n; ++i) { cin >> x[i]; } iota(par, par + n, 0); fill(sz, sz + n, 1); for (int i = 0; i < n - 1; ++i) { not_joined.insert(i); } } void process() { for (int i = 0; i < n; ++i) { int L = lower_bound(x, x + n, x[i] - b) - x; int R = upper_bound(x, x + n, x[i] - a) - x; if (R > L) { join(i, L); while (true) { auto it = not_joined.lower_bound(L); if (it == not_joined.end() || (*it) >= R - 1) { break; } else { join(*it, (*it) + 1); not_joined.erase(it); } } } } } void print_ans() { for (int i = 0; i < n; ++i) { cout << sz[get_root(i)] << '\n'; } } signed main() { fast_io(); read(); process(); print_ans(); }