首页 > 代码库 > Cantor表
Cantor表
题目描述 Description
现代数学的著名证明之一是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,…
输入描述 Input Description
整数N(1≤N≤10000000)
输出描述 Output Description
表中的第N项
样例输入 Sample Input
7
样例输出 Sample Output
1/4
/*#include<cstdio> int main() { int N,a[10010]={0},res=0,i,t; scanf("%d",&N); for(i=0;i<N;i++) { scanf("%d",&t); if(a[t]==0) { a[t]=t; res++; } } printf("%d\n",res); for(i=0;i<10010;i++) { if(a[i]!=0) printf("%d ",a[i]); } return 0; } */ #include<iostream> #include<cstdio> #include<algorithm> using namespace std; int main() { int a[100001]; int i,j; int t; cin>>t; for(i=0;i<t;i++) cin>>a[i]; sort(a,a+t); for(i=0;i<t-1;i++) cout<<a[i]<<" "; cout<<a[t-1]<<endl; return 0; }
Cantor表
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。