博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
April Fools Day Contest 2016 B. Scrambled
阅读量:6072 次
发布时间:2019-06-20

本文共 1733 字,大约阅读时间需要 5 分钟。

B. Scrambled

题目连接:

Description

Btoh yuo adn yuor roomatme lhoate wianshg disehs, btu stlil sdmoeboy msut peorrfm tihs cohre dialy. Oen dya yuo decdie to idourtcne smoe syestm. Yuor rmmotaoe sstgegus teh fooniwllg dael. Yuo argee on tow arayrs of ientgres M adn R, nmebur upmicnog dyas (induiclng teh cunrret oen) wtih sicsescuve irnegets (teh ceurrnt dya is zreo), adn yuo wsah teh diehss on dya D if adn olny if terhe etsixs an iednx i scuh taht D mod M[i] = R[i], otwsehrie yuor rmootmae deos it. Yuo lkie teh cncepot, btu yuor rmotaome's cuinnng simle meaks yuo ssecupt sthnoemig, so yuo itennd to vefriy teh fnerisas of teh aemnrgeet.

Yuo aer geivn ayarrs M adn R. Cuaclatle teh pceanregte of dyas on wchih yuo edn up dnoig teh wisahng. Amsuse taht yuo hvae iiiftlneny mnay dyas aehad of yuo.

Input

The first line of input contains a single integer N (1 ≤ N ≤ 16).

The second and third lines of input contain N integers each, all between 0 and 16, inclusive, and represent arrays M and R, respectively. All M[i] are positive, for each i R[i] < M[i].

Output

Output a single real number. The answer is considered to be correct if its absolute or relative error does not exceed 10 - 4.

Sample Input

1

2
0

Sample Output

0.500000

Hint

题意

听说改变文字顺序,并不影响题目阅读 hhh

就是两个人洗碗的故事,如果对于i天来说,存在一个j,使得i%m[j]=r[j]

那么这一天归我洗碗,否则归他

问一共百分之多少的天数,我在洗碗。

题解:

算个lcm,然后直接暴力就好了

1到16的lcm是720720

代码

#include
using namespace std;const int maxn = 20;int m[maxn],r[maxn];int main(){ int n;scanf("%d",&n); for(int i=1;i<=n;i++)scanf("%d",&m[i]); for(int i=1;i<=n;i++)scanf("%d",&r[i]); int ans1=1; for(int i=0;i<=720720;i++) for(int j=1;j<=n;j++) if(i%m[j]==r[j]){ans1++;break;} printf("%.10f\n",1.0*ans1/(1.0*720720));}

转载地址:http://vzigx.baihongyu.com/

你可能感兴趣的文章
数据管理DMS 全量SQL诊断:你的SQL是健康的蓝色,还是危险的红色?
查看>>
搭建一个通用的脚手架
查看>>
开年巨制!千人千面回放技术让你“看到”Flutter用户侧问题
查看>>
开源磁盘加密软件VeraCrypt教程
查看>>
本地vs云:大数据厮杀的最终幸存者会是谁?
查看>>
阿里云公共镜像、自定义镜像、共享镜像和镜像市场的区别 ...
查看>>
shadowtunnel v1.7 发布:新增上级负载均衡支持独立密码
查看>>
Java线程:什么是线程
查看>>
mysql5.7 创建一个超级管理员
查看>>
【框架整合】Maven-SpringMVC3.X+Spring3.X+MyBatis3-日志、JSON解析、表关联查询等均已配置好...
查看>>
要想成为高级Java程序员需要具备哪些知识呢?
查看>>
带着问题去学习--Nginx配置解析(一)
查看>>
onix-文件系统
查看>>
java.io.Serializable浅析
查看>>
我的友情链接
查看>>
多线程之线程池任务管理通用模板
查看>>
CSS3让长单词与URL地址自动换行——word-wrap属性
查看>>
CodeForces 580B Kefa and Company
查看>>
开发规范浅谈
查看>>
Spark Streaming揭秘 Day29 深入理解Spark2.x中的Structured Streaming
查看>>