toj 2798 Farey Sequence

   Farey Sequence

Time Limit: 3.0 Seconds    Memory Limit: 65536K    Multiple test files



The Farey Sequence Fn for any integer n with n ≥ 2 is the set of irreducible rational numbers a/b with 0 < a < bn and gcd(a,b) = 1 arranged in increasing order. The first few are

F2 = {1/2}
F3 = {1/3, 1/2, 2/3}
F4 = {1/4, 1/3, 1/2, 2/3, 3/4}
F5 = {1/5, 1/4, 1/3, 2/5, 1/2, 3/5, 2/3, 3/4, 4/5}

Now, your task is to print Farey Sequence given the value of n.

Input

There are several test cases. The first line is an integer giving the number of cases. Each test case has only one line, which contains a positive integer n.

Output

For each test case, you should output one line, which contains the corresponding Farey Sequence. Adjacent terms are separated by a single ',' and there can't be any white spaces in your output. See Sample Output for more clarifications on the output format.

Constraints

2 ≤ n ≤ 3000

Sample Input

4
2
3
4
5

Sample Output

1/2
1/3,1/2,2/3
1/4,1/3,1/2,2/3,3/4
1/5,1/4,1/3,2/5,1/2,3/5,2/3,3/4,4/5

Note

Do Not use cout to produce the output for this problem, since it is inefficient.



Source:  The 5th UESTC Programming Contest

Problem ID in problemset: 2798



Submit   Back   Runs   Statistics   Clarifications

#include  < iostream >
#include 
< queue >
using   namespace  std;
int  t,n;
typedef 
struct  node
{
    
short  a,b;
    
float  c;
    node(){}
    node(
short  aa, short  bb, float  cc)
    {
        a
= aa;
        b
= bb;
        c
= cc;
    }
    friend 
bool   operator   < (node x,node y)
    {
        
return  x.c > y.c;
    }
}Point;
priority_queue
< Point > Q;
Point p;
int  gcd ( short  a ,  short  b)
{
  
if  (b  ==   0 )
      
return  a;
  
return  gcd (b , a  %  b);
}
int  main()
{    
    
short  i,j;
    scanf(
" %d " , & t);
//     int num = 0;
     while (t -- )
    {
        scanf(
" %d " , & n);
        printf(
" 1/%d " ,n);
        
while ( ! Q.empty())
            Q.pop();
        
for (i = 1 ;i <= n - 1 ;i ++ )
            
for (j = i + 1 ;j <= n;j ++ )
            {
                
if (i == 1 && j == n)
                    
continue ;
                
if (gcd(i,j) == 1 )
                {
                    Q.push(node(i,j,i
* 1.0 / j));
                
//     num ++;
                }
            }
        
while ( ! Q.empty())
        {
            p
= Q.top();
            Q.pop();
            printf(
" ,%d/%d " ,p.a,p.b);
        }
        
// cout<<num<<endl;
        printf( " \n " );
    }
    
return   0 ;
}

转载于:https://www.cnblogs.com/forever4444/archive/2009/05/15/1457834.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值