結果

問題 No.2183 LCA on Rational Tree
ユーザー tailstails
提出日時 2023-01-17 19:50:23
言語 cLay
(20240714-1)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 8,780 ms
コンパイル使用メモリ 222,876 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-06-10 22:20:40
合計ジャッジ時間 9,377 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,796 KB
testcase_01 AC 31 ms
10,112 KB
testcase_02 AC 46 ms
9,676 KB
testcase_03 AC 27 ms
9,800 KB
testcase_04 AC 14 ms
9,668 KB
testcase_05 AC 30 ms
9,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

struct S{
	ull p,q,l,n,f[32];
	S(){
		rd(p,q);
		n=Factor(q-=p,f);
		l=0;
	}
	void step(){
		p+=l;
		rep[f](x,n){
			while(p%x==0&&q%x==0){
				p/=x;
				q/=x;
			}
		}
		l=1<<30;
		rep[f](x,n){
			if(q%x==0){
				l<?=x-p%x;
			}
		}
	}
};

bool h(S&u,S&v){
	if(u.p<=v.p<u.p+u.l){
		wt(v.p,v.p+v.q);
		return true;
	}
	return false;
}

{
	ll@q;
	rep(q){
		S u,v;
		while(1){
			ll d=v.q-u.q;
			if(d==0){
				if(h(u,v)||h(v,u)){
					break;
				}
			}
			if(d<=0){
				u.step();
			}
			if(d>=0){
				v.step();
			}
		}
	}
}
0