結果

問題 No.2262 Fractions
ユーザー 👑 potato167potato167
提出日時 2023-04-08 02:35:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,404 bytes
コンパイル時間 1,970 ms
コンパイル使用メモリ 204,044 KB
実行使用メモリ 5,960 KB
最終ジャッジ日時 2024-05-05 07:28:59
合計ジャッジ時間 6,939 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
5,248 KB
testcase_01 AC 45 ms
5,376 KB
testcase_02 AC 36 ms
5,376 KB
testcase_03 AC 35 ms
5,376 KB
testcase_04 AC 35 ms
5,376 KB
testcase_05 AC 34 ms
5,376 KB
testcase_06 AC 36 ms
5,376 KB
testcase_07 AC 34 ms
5,376 KB
testcase_08 AC 33 ms
5,376 KB
testcase_09 AC 35 ms
5,376 KB
testcase_10 AC 36 ms
5,376 KB
testcase_11 AC 77 ms
5,376 KB
testcase_12 AC 77 ms
5,376 KB
testcase_13 AC 80 ms
5,376 KB
testcase_14 AC 80 ms
5,376 KB
testcase_15 AC 79 ms
5,376 KB
testcase_16 AC 42 ms
5,376 KB
testcase_17 AC 41 ms
5,376 KB
testcase_18 AC 42 ms
5,376 KB
testcase_19 AC 107 ms
5,376 KB
testcase_20 AC 101 ms
5,376 KB
testcase_21 AC 109 ms
5,376 KB
testcase_22 AC 96 ms
5,376 KB
testcase_23 AC 86 ms
5,376 KB
testcase_24 AC 121 ms
5,832 KB
testcase_25 AC 121 ms
5,828 KB
testcase_26 AC 116 ms
5,700 KB
testcase_27 AC 117 ms
5,700 KB
testcase_28 AC 115 ms
5,572 KB
testcase_29 AC 119 ms
5,836 KB
testcase_30 AC 120 ms
5,828 KB
testcase_31 AC 122 ms
5,704 KB
testcase_32 AC 124 ms
5,836 KB
testcase_33 AC 120 ms
5,960 KB
testcase_34 AC 115 ms
5,704 KB
testcase_35 AC 130 ms
5,828 KB
testcase_36 AC 124 ms
5,832 KB
testcase_37 AC 10 ms
5,504 KB
testcase_38 AC 10 ms
5,504 KB
testcase_39 AC 108 ms
5,376 KB
testcase_40 AC 108 ms
5,376 KB
testcase_41 AC 110 ms
5,376 KB
testcase_42 AC 111 ms
5,376 KB
testcase_43 AC 107 ms
5,376 KB
testcase_44 AC 115 ms
5,792 KB
testcase_45 AC 122 ms
5,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

namespace po167{
//out F_{n,k}
//O(Nlog(N))
//N<2^{21}
//F_{n,0}=={0,1}
//if k==-1 -> return {n,len(F_{n})}
//https://atcoder.jp/contests/joisc2008/submissions/40395171
std::pair<long long,long long> Farey_Sequence(long long n,long long k){
	std::vector<long long> p(n+1,1);
	for(int i=n;i>=1;i--){
		for(int j=i*2;j<=n;j+=i) p[i]-=p[j];
	}
	long long lim=0;
	for(long long i=1;i<=n;i++) lim+=i*p[i];
	if(k==-1) return {n,lim};
	if(k==0) return {0,1};
	if(lim==k) return {1,1};
	if(lim<k) return {-1,-1};
	long long M=n*n;
	long long l=0,r=M-1;
	while(r-l>1){
		long long med=(l+r)/2;
		long long tmp=0;
		for(long long i=1;i<=n;i++) tmp+=(p[i]*((i*med)/M));
		if(tmp<k) l=med;
		else r=med;
	}
	for(long long i=2;i<=n;i++){
		long long x=((long long)(i)*r)/M;
		if(i*l<x*M){
			return {x,i};
		}
	}
	assert(false);
}
}

using namespace std;
using ll=long long;
#define rep(i,a,b) for (ll i=a;i<b;i++)

pair<int,int> solve_yuki_2262(long long N,long long K){
	auto tmp=po167::Farey_Sequence(N,-1);
	if(tmp.second*2ll-1<K){
		return {-1,-1};
	}
	bool rev=0;
	if(tmp.second<K){
		rev=1;
		K=tmp.second*2ll-K;
	}
	tmp=po167::Farey_Sequence(N,K);
	if(rev) swap(tmp.first,tmp.second);
	return tmp;
}

int main(){
	int T;
	cin>>T;
	rep(i,0,T){
		ll N,K;
		cin>>N>>K;
		auto ans=solve_yuki_2262(N,K);
		if(ans.first==-1) cout<<"-1\n";
		else cout<<ans.first<<"/"<<ans.second<<"\n";
	}
}
0