2010年9月17日 星期五

ACM 11714 - Blind Sorting

#include <stdio.h>
#include <math.h>
int n;

int main()
{
while (scanf("%d", &n) == 1)
{
printf("%d\n", (n - 1) + (int)(log(n - 1) / log(2)));
}
return 0;
}


回目錄
回首頁

沒有留言 :

張貼留言

Related Posts Plugin for WordPress, Blogger...