結果
問題 | No.1170 Never Want to Walk |
ユーザー | daikisuyama |
提出日時 | 2020-08-14 22:39:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,608 bytes |
コンパイル時間 | 2,187 ms |
コンパイル使用メモリ | 186,256 KB |
実行使用メモリ | 13,636 KB |
最終ジャッジ日時 | 2024-10-10 15:59:01 |
合計ジャッジ時間 | 8,041 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,636 KB |
testcase_01 | AC | 2 ms
6,824 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 3 ms
6,820 KB |
testcase_13 | AC | 3 ms
6,820 KB |
testcase_14 | AC | 3 ms
6,816 KB |
testcase_15 | AC | 3 ms
6,816 KB |
testcase_16 | AC | 4 ms
6,816 KB |
testcase_17 | AC | 3 ms
6,820 KB |
testcase_18 | AC | 3 ms
6,820 KB |
testcase_19 | AC | 3 ms
6,816 KB |
testcase_20 | AC | 4 ms
6,820 KB |
testcase_21 | AC | 3 ms
6,820 KB |
testcase_22 | AC | 5 ms
6,816 KB |
testcase_23 | AC | 4 ms
6,816 KB |
testcase_24 | AC | 5 ms
6,816 KB |
testcase_25 | AC | 5 ms
6,816 KB |
testcase_26 | AC | 4 ms
6,816 KB |
testcase_27 | AC | 331 ms
7,680 KB |
testcase_28 | AC | 323 ms
7,680 KB |
testcase_29 | AC | 335 ms
7,808 KB |
testcase_30 | AC | 334 ms
7,808 KB |
testcase_31 | AC | 328 ms
7,680 KB |
testcase_32 | TLE | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
//デバッグ用オプション:-fsanitize=undefined,address //コンパイラ最適化 #pragma GCC optimize("Ofast") //インクルードなど #include<bits/stdc++.h> using namespace std; typedef long long ll; //マクロ //forループ //引数は、(ループ内変数,動く範囲)か(ループ内変数,始めの数,終わりの数)、のどちらか //Dがついてないものはループ変数は1ずつインクリメントされ、Dがついてるものはループ変数は1ずつデクリメントされる //FORAは範囲for文(使いにくかったら消す) #define REP(i,n) for(ll i=0;i<ll(n);i++) #define REPD(i,n) for(ll i=n-1;i>=0;i--) #define FOR(i,a,b) for(ll i=a;i<=ll(b);i++) #define FORD(i,a,b) for(ll i=a;i>=ll(b);i--) #define FORA(i,I) for(const auto& i:I) //xにはvectorなどのコンテナ #define ALL(x) x.begin(),x.end() #define SIZE(x) ll(x.size()) //定数 #define INF 1000000000000 //10^12:∞ #define MOD 1000000007 //10^9+7:合同式の法 #define MAXR 100000 //10^5:配列の最大のrange //略記 #define PB push_back //挿入 #define MP make_pair //pairのコンストラクタ #define F first //pairの一つ目の要素 #define S second //pairの二つ目の要素 //以下、素集合と木は同じものを表す class UnionFind { public: vector<ll> parent; //parent[i]はiの親 vector<ll> siz; //素集合のサイズを表す配列(1で初期化) map<ll,vector<ll>> group;//素集合ごとに管理する連想配列(keyはそれぞれの素集合の親、valueはその素集合の要素の配列) //コンストラクタの:の後ろでメンバ変数を初期化 UnionFind(ll n):parent(n),siz(n,1){ //最初は全ての要素の根はそれ自身であるとして初期化 for(ll i=0;i<n;i++){parent[i]=i;} } ll root(ll x){ //データxの属する木の根を取得 if(parent[x]==x) return x; return parent[x]=root(parent[x]); //代入式の値は代入した変数の値になる //経路圧縮(根に直接要素を繋ぐことで計算を効率化する)を行っている } void unite(ll x,ll y){ //xとyの木を併合 ll rx=root(x);//xの根をrx ll ry=root(y);//yの根をry if(rx==ry) return; //同じ木にある時 //小さい集合を大きい集合へと併合(ry→rxへ併合) if(siz[rx]<siz[ry]) swap(rx,ry); siz[rx]+=siz[ry]; parent[ry]=rx; //xとyが同じ木にない時はyの根ryをxの根rxにつける } bool same(ll x,ll y){//xとyが属する木が同じかを判定 ll rx=root(x); ll ry=root(y); return rx==ry; } ll size(ll x){ //xの素集合のサイズを取得 return siz[root(x)]; } //↓他の人のライブラリにはないけど便利だと思う関数 //O(n)であることに注意 void grouping(ll n){//素集合どうしをグループ化 REP(i,n){ if(group.find(parent[i])==group.end()){ group[parent[i]]={i}; }else{ group[parent[i]].PB(i); } } } }; signed main(){ //入力の高速化用のコード //ios::sync_with_stdio(false); //cin.tie(nullptr); ll n,a,b;cin>>n>>a>>b; vector<ll> x(n);REP(i,n)cin>>x[i]; UnionFind u(n); REP(i,n){ auto l=lower_bound(ALL(x),x[i]+a); ll now=ll(l-x.begin()); while(l!=x.end()){ if((*l)>x[i]+b)break; u.unite(i,now); now++;l++; } } REP(i,n)cout<<u.size(i)<<endl; }