hdu 2432法里数列

这题本来完全没思路的,后来想一想,要不打个表找找规律吧。于是打了个表,真找到规律了。。。

打表的代码如下:

int n;
void dfs(int x1, int y1, int x2, int y2) {if (y1 + y2 <= n) {dfs(x1, y1, x1 + x2, y1 + y2);printf("%d/%d\n", x1 + x2, y1 + y2);dfs(x1 + x2, y1 + y2, x2, y2);}
}
void print_farey(int n) {printf("0/1\n");dfs(0, 1, 1, 1);printf("1/1\n");
}int main() {freopen("data.in", "r", stdin);while(scanf("%d", &n) == 1) {print_farey(n);}return 0;
}


我发现的规律是:

①这个数列中,最开始会有约n/2项是分子为1的(分母从n开始每项递减1,直到ceil(n/2.0)结束);

②接着会有约n/3项,一个分子为2的分数与一个分子为1分数交替出现,分子为2的数分母从n(若n%2!=0)或n-1(若n%2==0)开始每项递减2,直到floor(n/3.0 + 1/3.0) * 2 + 1结束,分子为1的数的分母从上次结束的下一个位置即floor(n/2.0 + 1/2.0)-1开始每项递减1直到ceil(n/3.0)结束;

③再然后还会有约n/3项,以3/a,2/b,3/c,1/d的形式交替出现,其中a从n(或n-1,或n-2,即第一个不被3整除的数)开始每项递减3直到floor(n/4.0 + 1/4.0) * 3 + 2结束,b从上次结束的下一个位置即floor(n/3.0 + 1/3.0) * 2 - 1开始每项递减2直到floor(n/4.0+1/4.0) * 2 + 1结束,c从a-1开始每项递减3直到直到floor(n/4.0 + 1/4.0) * 3 + 1结束,d从上次结束的下一个位置即floor(n/3.0+1/3.0)开始每项递减1直到floor(n/4.0+1/4.0)结束。

这些项加起来就有n/2+n/3+n/3>n项了,所以题目所需第k项一定在这些项里,按此规律即可出结果。

最后通过的代码如下:

 

/** hdu2432/win.cpp* Created on: 2012-11-3* Author    : ben*/
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <ctime>
#include <iostream>
#include <algorithm>
#include <queue>
#include <set>
#include <map>
#include <stack>
#include <string>
#include <vector>
#include <deque>
#include <list>
#include <functional>
#include <numeric>
#include <cctype>
using namespace std;/*** 得到n阶法里数列分子为1的连续段(到分子出现2时截止)长度*/
inline int getflen(int n) {int t = (int)ceil(n / 2.0);return n - t + 1;
}
/*** 得到n阶法里数列分子为2和1交替出现的连续段(到分子出现3* 时截止)的长度*/
inline int getslen(int n) {int s1 = n % 2 == 0 ? (n - 1) : n;int t1 = (int)floor(n/3.0 + 1/3.0) * 2 + 1;int ans = (s1 - t1) / 2 + 1;int s2 = (int)floor(n / 2.0 + 1 / 2.0) - 1;int t2 = (int)ceil(n/3.0);ans += s2 - t2 + 1;return ans;
}
/*** 得到n阶法里数列分子为3,1,2交替出现的连续段(到分子出现4* 时截止)的长度*/
inline int gettlen(int n) {int s1 = n;while(s1 % 3 == 0) {s1--;}int t1 = (int)floor(n/4.0 + 1/4.0) * 3 + 2;int s3 = s1 - 1;int t3 = (int)floor(n/4.0 + 1/4.0) * 3 + 1;int s2 = (int)floor(n/3.0 + 1/3.0) * 2 - 1;int t2 = (int)floor(n/4.0 + 1/4.0) * 2 + 1;int s4 = (int)ceil(n/3.0) - 1;int t4 = (int)ceil(n/4.0);int ans = 0;if(s1 % 3 == 1) {ans += 2;s1 -= 2;s3 -= 2;s4 -= 1;}ans += (s1 - t1) / 3 + 1;ans += (s3 - t3) / 3 + 1;ans += (s2 - t2) / 2 + 1;ans += s4 - t4 + 1;return ans;
}
inline void get_f(int n, int k, int &a, int &b) {a = 1;b = n - k + 1;
}
inline void get_s(int n, int k, int &a, int &b) {int s1 = n % 2 == 0 ? (n - 1) : n;int s2 = (int)floor(n / 2.0 + 1 / 2.0);if(k % 2 == 1) {a = 2;b = s1 - k + 1;}else {a = 1;b = s2 - k / 2;}
}
inline void get_t(int n, int k, int &a, int &b) {int s1 = n;while(s1 % 3 == 0) {s1--;}int s2 = (int)floor(n/3.0 + 1/3.0) * 2 - 1;int s3 = (s1 % 3 == 2) ? (s1 - 1) : (s1 - 2);int s4 = (int)ceil(n/3.0) - 1;if(k % 4 == 1) {a = 3;b = s1 - (k - 1) / 4 * 3;}else if(k % 4 == 3) {a = 3;b = s3 - (k - 3) / 4 * 3;}else if((k % 4 == 2) xor (s1 % 3 == 2)) {a = 1;if(k % 4 == 2) {b = s4 - (k - 2) / 4;}else {b = s4 - (k - 4) / 4;}}else {a = 2;if(k % 4 == 2) {b = s2 - (k - 2) / 4 * 2;}else {b = s2 - (k - 4) / 4 * 2;}}
}
/*** 调用函数get_farey(n, k)即得结果,结果的第一项为分子,* 第二项为分母。程序时间与空间复杂度均为O(1)*/pair<int, int> get_farey(int n, int k) {pair<int, int> ret;int fl = getflen(n);int sl = getslen(n);if(k <= fl) {get_f(n, k, ret.first, ret.second);}else if(k <= sl + fl) {get_s(n, k - fl, ret.first, ret.second);}else {get_t(n, k - fl - sl, ret.first, ret.second);}return ret;
}int main() {
#ifndef ONLINE_JUDGEfreopen("data.in", "r", stdin);
#endifint T, n, k;scanf("%d", &T);while(T--) {scanf("%d%d", &n, &k);pair<int, int> ans = get_farey(n, k);printf("%d/%d\n", ans.first, ans.second);}return 0;
}

转载于:https://www.cnblogs.com/moonbay/archive/2012/11/05/2756045.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377120.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python学习笔记四——数据类型

1.数字类型&#xff1a; 2.字符串类型&#xff1a; 切片&#xff1a;a[m:n:s] m:起始值 n:结束值&#xff08;不包括n&#xff09; s:步长&#xff0c;负数表示从后向前取值 3.序列&#xff1a;列表&#xff0c;元组和字符串都是序列 序列的两个主要特点是索引操作符和切片…

小狐狸ChatGPT系统 不同老版本升级至新版数据库结构同步教程

最新版2.6.7下载&#xff1a;https://download.csdn.net/download/mo3408/88656497 小狐狸GPT付费体验系统如何升级&#xff0c;该系统更新比较频繁&#xff0c;也造成了特别有用户数据情况下升级时麻烦&#xff0c;特别针对会员关心的问题出一篇操作教程&#xff0c;本次教程…

《MySQL 8.0.22执行器源码分析(3.2)关于HashJoinIterator》

在本文章之前&#xff0c;应该了解的概念&#xff1a; 连接的一些概念、NLJ、BNL、HashJoin算法。 目录关于join连接probe行保存概念Hashjoin执行流程&#xff08;十分重要&#xff09;HashJoinIterator成员函数讲解1、BuildHashTable2、ReadNextHashJoinChunk3、ReadRowFromPr…

json 语法_JSON的基本语法

json 语法JSON which stands for JavaScript Object Notation is a lightweight readable data format that is structurally similar to a JavaScript object much like its name suggests. 代表JavaScript Object Notation的 JSON是一种轻量级的可读数据格式&#xff0c;其结…

RFC3261(17 事务)

SIP是一个基于事务处理的协议&#xff1a;部件之间的交互是通过一系列相互独立的消息交换来完成的。特别是&#xff0c;一个SIP 事务由一个单个请求和这个请求的所有应答组成&#xff0c;这些应答包括了零个或者多个临时应答以及一个或者多个终结应答。在事务中&#xff0c;当请…

HDUOJ---1754 I Hate It (线段树之单点更新查区间最大值)

I Hate It Time Limit: 9000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 33469 Accepted Submission(s): 13168 Problem Description很多学校流行一种比较的习惯。老师们很喜欢询问&#xff0c;从某某到某某当中&#xff0c;…

WEG的完整形式是什么?

WEG&#xff1a;邪恶邪恶的咧嘴 (WEG: Wicked Evil Grin) WEG is an abbreviation of "Wicked Evil Grin". WEG是“ Wicked Evil Grin”的缩写 。 It is also known as EWG (Evil Wicked Grin) "Grin" refers to a broad smile. "Wicked" refer…

C# 把数字转换成链表

例如&#xff1a;123456转换成 1 -> 2 -> 3-> 4-> 5-> 6 View Code static LinkedList<int> CovertIntToLinkedList(int num){Stack<int> stack new Stack<int>();LinkedList<int> result new LinkedList<int>();while (num!0…

《MySQL 8.0.22执行器源码分析(4.1)Item_sum类以及聚合》

Item_sum类用于SQL聚合函数的特殊表达式基类。 这些表达式是在聚合函数&#xff08;sum、max&#xff09;等帮助下形成的。item_sum类也是window函数的基类。 聚合函数&#xff08;Aggregate Function&#xff09;实现的大部分代码在item_sum.h和item_sum.cc 聚合函数限制 不…

Java 性能优化实战记录(2)---句柄泄漏和监控

前言: Java不存在内存泄漏, 但存在过期引用以及资源泄漏. (个人看法, 请大牛指正) 这边对文件句柄泄漏的场景进行下模拟, 并对此做下简单的分析.如下代码为模拟一个服务进程, 忽略了句柄关闭, 造成不能继续正常服务的小场景. 1 public class FileHandleLeakExample {2 3 p…

什么是Java文件?

Java文件 (Java files) The file is a class of java.io package. 该文件是java.io包的类。 If we create a file then we need to remember one thing before creating a file. First, we need to check whether a file exists of the same name or not. If a file of the sa…

绕过本地验证提交HTML数据

我们在入侵一个网站,比如上传或者自己定义提交的文件时,会在本地的代码中遇到阻碍,,也就是过 滤,过滤有两种,一种是在远程服务器的脚本上进行的过滤,这段代码是在服务器上运行后产生作用的,这种过 滤方式叫做远程过滤;另一种是在我们的IE浏览器里执行的脚本过滤,就是说是在我们…

《dp补卡——343. 整数拆分、96. 不同的二叉搜索树》

343. 整数拆分 1、确定dp数组以及下标含义。 dp[i]&#xff1a;分拆数字i&#xff0c;可以得到的最大的乘积 2、确定递推公式&#xff1a; dp[i]最大乘积出处&#xff1a;从1遍历j到i&#xff0c;j * dp[i-j] 与 j * (i-j)取最大值。( 拆分j的情况&#xff0c;在遍历j的过程…

Adroid学习之 从源码角度分析-禁止使用回退按钮方案

有时候&#xff0c;不能让用户进行回退操作&#xff0c;如何处理&#xff1f; 查看返回键触发了哪些方法。在打开程序后把这个方法禁止了。问题&#xff1a;程序在后台驻留&#xff0c;这样就会出现&#xff0c;其他时候也不能使用回退按钮。如何处理&#xff0c;在onpase()时方…

骑士游历问题问题_骑士步行问题

骑士游历问题问题Problem Statement: 问题陈述&#xff1a; There is a chessboard of size NM and starting position (sx, sy) and destination position (dx,dy). You have to find out how many minimum numbers of moves a knight goes to that destination position? 有…

Android基础之用Eclipse搭建Android开发环境和创建第一个Android项目(Windows平台)...

一、搭建Android开发环境 准备工作&#xff1a;下载Eclipse、JDK、Android SDK、ADT插件 下载地址&#xff1a;Eclipse:http://www.eclipse.org/downloads/ JDK&#xff1a;http://www.oracle.com/technetwork/java/javase/downloads/jdk7u9-downloads-1859576.html Android SD…

《dp补卡——01背包问题》

目录01背包[416. 分割等和子集](https://leetcode-cn.com/problems/partition-equal-subset-sum/)[1049. 最后一块石头的重量 II](https://leetcode-cn.com/problems/last-stone-weight-ii/)[494. 目标和](https://leetcode-cn.com/problems/target-sum/)01背包 1、dp数组以及…

用JavaScript往DIV动态添加内容

参考&#xff1a;http://zhidao.baidu.com/link?url6jSchyqPiEYCBoKdOmv52YHz9r7MTBms2pK1N6ptOX1kaR2eg320mlW1Sr6n36hpOeOadBxC2rWWGuhZPbms-K <div id"show"></div>要填充的数据为: 这是一个测试例子.jquery&#xff1a;$(function(){ var data …

《dp补卡——完全背包问题》

N件物品和一个最多能背重量为W的背包。第i件物品的重量为weight[i]&#xff0c;得到的价值是value[i]。每件物品都有无限个(可以放入背包多次)&#xff0c;求解将哪些物品装入背包里物品价值总和最大。 01背包和完全背包唯一不同在于遍历顺序上。 01背包的核心代码&#xff1a…

Java中的类型转换

类型转换 (Typecasting) Typecasting is a term which is introduced in all the language similar to java. Typecasting是一个用与Java类似的所有语言引入的术语。 When we assign primitive datatype to another datatype. 当我们将原始数据类型分配给另一个数据类型时。 I…