标签:des style blog http color io os ar strong
1999年NOIP全国联赛普及组
现代数学的著名证明之一是Georg Cantor证明了有理数是可枚举的。他是用下面这一张表来证明这一命题的: 1/1 1/2 1/3 1/4 1/5 … 2/1 2/2 2/3 2/4 … 3/1 3/2 3/3 … 4/1 4/2 … 5/1 … … 我们以Z字形给上表的每一项编号。第一项是1/1,然后是1/2,2/1,3/1,2/2,…
整数N(1≤N≤10000000)
表中的第N项
7
1/4
见描述
1 #include <iostream> 2 #include <cmath> 3 using namespace std; 4 /* run this program using the console pauser or add your own getch, system("pause") or input loop */ 5 6 int main(int argc, char** argv) 7 { 8 int N, k, i; 9 cin>>N; 10 if(N == 1) 11 cout<<"1/1"<<endl; 12 else 13 { 14 k = (int)floor((sqrt(1+8*N)-1)/2-1e-9)+1; 15 i = N - k*(k-1)/2; 16 if(k%2 == 1) 17 cout<<k-i+1<<‘/‘<<i<<endl; 18 else 19 cout<<i<<‘/‘<<k-i+1<<endl; 20 } 21 return 0; 22 }
难点在于行号K的确定,其余都很简单!即如何用编程表示(sqrt(1+8*N)-1)/2<<k<(sqrt(1+8*N)+1)/2??思考许久方得良方~
标签:des style blog http color io os ar strong
原文地址:http://www.cnblogs.com/justzyx/p/3970764.html