码迷,mamicode.com
首页 > 其他好文 > 详细

洛谷1014 Cantor表

时间:2017-10-05 12:12:32      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:int   +=   ret   ++i   src   scan   www   idt   nbsp   

 
水题。随便搞搞就过了。
//Serene
#include<algorithm>
#include<iostream>
#include<cstring>
#include<cstdlib>
#include<cstdio>
#include<cmath>
using namespace std;
const int maxn=1e7+10;
int n,tot,x,y;

int main() {
	scanf("%d",&n);
	for(int i=1;i<=n;++i) {
		tot+=i;
		if(tot>=n) {
			tot-=i; x=i; y=(i&1)? i-(n-tot)+1:n-tot; x=x-y+1;
			printf("%d/%d",y,x); break;
		}
	}
	return 0;
}

  

洛谷1014 Cantor表

标签:int   +=   ret   ++i   src   scan   www   idt   nbsp   

原文地址:http://www.cnblogs.com/Serene-shixinyi/p/7628792.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!