結果

問題 No.1170 Never Want to Walk
ユーザー leaf_1415leaf_1415
提出日時 2020-08-14 21:41:04
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,871 bytes
コンパイル時間 1,765 ms
コンパイル使用メモリ 95,840 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-10 14:43:05
合計ジャッジ時間 9,243 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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);
		}
		it = S.lower_bound(P(x[i]-b, -inf));
		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;
}
0