Visible Trees(hdu2841)
Visible Trees
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2462 Accepted Submission(s): 1032
are many trees forming a m * n grid, the grid starts from (1,1). Farmer
Sherlock is standing at (0,0) point. He wonders how many trees he can
see.
If two trees and Sherlock are in one line, Farmer Sherlock can only see the tree nearest to him.
first line contains one integer t, represents the number of test cases.
Then there are multiple test cases. For each test case there is one
line containing two integers m and n(1 ≤ m, n ≤ 100000)
1 1
2 3
5
1 #include<stdio.h>
2 #include<algorithm>
3 #include<iostream>
4 #include<stdlib.h>
5 #include<string.h>
6 #include<queue>
7 int oula[100005];
8 bool prime[100005];
9 int ans[100005];
10 long long bns[100005];
11 int id[100005];
12 using namespace std;
13 typedef long long LL;
14 queue<int>que;
15 int main(void)
16 {
17 int i,j,k;
18 for(i=0; i<100005; i++)
19 oula[i]=i;
20 oula[1]=0;
21 memset(prime,0,sizeof(prime));
22 for(i=2; i<1000; i++)
23 {
24 if(!prime[i])
25 {
26 for(j=i; i*j<=100000; j++)
27 {
28 prime[i*j]=true;
29 }
30 }
31 }
32 int cnt=0;
33 for(i=2; i<=100000; i++)
34 if(!prime[i])
35 ans[cnt++]=i;
36 for(i=0; i<cnt; i++)
37 {
38 for(j=1; j*ans[i]<=100000; j++)
39 {
40 oula[j*ans[i]]/=ans[i];
41 oula[j*ans[i]]*=(ans[i]-1);
42 }
43 }
44 scanf("%d",&k);
45 int n,m;
46 while(k--)
47 {
48 scanf("%d %d",&n,&m);
49 memset(id,0,sizeof(id));
50 int xx=max(n,m);
51 int cc=min(n,m);
52 if(cc==1)
53 printf("%d\n",xx);
54 else
55 {
56 long long sum=0;
57 for(i=2; i<=cc; i++)
58 {
59 sum+=oula[i];
60 }
61 sum*=2;
62 for(i=cc+1; i<=xx; i++)
63 {
64 int vv=i;
65 int t=0;
66 int flag=0;
67 while(vv>1)
68 {
69 if(vv%ans[t])
70 {
71 t++;
72 flag=0;
73 }
74 else if(vv%ans[t]==0&&flag==0)
75 {
76 que.push(ans[t]);
77 flag=1;
78 vv/=ans[t];
79 }
80 else if(vv%ans[t]==0&&flag)
81 {
82 vv/=ans[t];
83 }
84 if(vv==1)
85 break;
86 }
87 int ak=0;
88 while(!que.empty())
89 {
90 id[ak++]=que.front();
91 que.pop();
92 }
93 LL ff=0;
94 int ii;
95 for(ii=1; ii<=(1<<ak)-1; ii++)
96 {
97 int tt=0;
98 LL pp=1;
99 for(j=0; j<ak; j++)
100 {
101 if(ii&(1<<j))
102 {
103 tt++;
104 pp*=id[j];
105 }
106 }
107 if(tt%2==0)
108 {
109 ff-=cc/pp;
110 }
111 else ff+=cc/pp;
112 }
113 sum+=cc-ff;
114
115 }
116 sum+=1;
117 printf("%lld\n",sum);
118 }
119 }
120 return 0;
121 }
Visible Trees(hdu2841)的更多相关文章
- Hdu2841 Visible Trees 2017-06-27 22:13 24人阅读 评论(0) 收藏
Visible Trees Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) To ...
- HDU-2841 Visible Trees(莫比乌斯反演)
Visible Trees 传送门 解题思路: 实际上的答案就是1~n与1~m之间互质的数的对数,写出式子就是 \(ans=\sum^{n}_{i=1}\sum^{m}_{j=1}[gcd(i,j)= ...
- hdu2848 Visible Trees (容斥原理)
题意: 给n*m个点(1 ≤ m, n ≤ 1e5),左下角的点为(1,1),右上角的点(n,m),一个人站在(0,0)看这些点.在一条直线上,只能看到最前面的一个点,后面的被档住看不到,求这个人能看 ...
- HDU 2841 Visible Trees 数论+容斥原理
H - Visible Trees Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u S ...
- HDU 2841 Visible Trees(数论)
标题效果:给你个m*n方格,广场格从(1,1)开始. 在树中的每个点,然后让你(0,0)点往下看,问:你能看到几棵树. 解题思路:假设你的视线被后面的树和挡住的话以后在这条线上的树你是都看不见的啊.挡 ...
- Visible Trees HDU - 2841
Visible Trees Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Tot ...
- C - Visible Trees HDU - 2841 -莫比乌斯函数-容斥
C - Visible Trees HDU - 2841 思路 :被挡住的那些点(x , y)肯定是 x 与 y不互质.能够由其他坐标的倍数表示,所以就转化成了求那些点 x,y互质 也就是在 1 - ...
- hdu 2841 Visible Trees 容斥原理
Visible Trees Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Pr ...
- Visible Trees
Visible Trees Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Pr ...
随机推荐
- 日常Java 2021/11/17
应用程序转换成Applet 将图形化的Java应用程序(是指,使用AWT的应用程序和使用java程序启动器启动的程序)转换成嵌入在web页面里的applet是很简单的.下面是将应用程序转换成.Appl ...
- day19 进程管理
day19 进程管理 什么是进程,什么是线程 1.什么是程序 一般情况下,代码,安装包等全部都是应用程序 2.什么是进程 进程(Process)是计算机中的程序关于某数据集合上的一次运行活动,是系统进 ...
- Spark(二十一)【SparkSQL读取Kudu,写入Kafka】
目录 SparkSQL读取Kudu,写出到Kafka 1. pom.xml 依赖 2.将KafkaProducer利用lazy val的方式进行包装, 创建KafkaSink 3.利用广播变量,将Ka ...
- Spring.DM web开发环境搭建
作为一个初学者来说,搭建好Spring.DM 的web开发环境还是有些麻烦的.我就遇到了N多麻烦,走了很多弯路.本文介绍了2种比较简单的搭建Spring.DM OSGi web开发环境的搭建. 第 ...
- JS 的三种定义变量 var let const
Let 只在 let 命令所在的代码块内有效,在外就会报错 Let 是块级作用域,函数内部使用let定义后,对函数外部无影响 Let/const 不存在变量提升,使用前一定要声明后,在使用,否则会报错 ...
- 【Java多线程】Java 中断
如何安全的结束一个正在运行的线程 java.lang.Thread类包含了一些常用的方法,如:start(), stop(), stop(Throwable) ,suspend(), destroy( ...
- 【Java】面向类与对象
一.面向对象 对象封装:私有变量+公共方法 方法与构造方法 this变量 Animal.java public class Animal { String name; int age; void mo ...
- Redis集群到集群迁移
目录 一.物理导入 简介 实际操作 一.物理导入 简介 redis集群在存储数据时,是根据槽点进行存储.例如老集群A如下: 都在一台机器,实际可以在多台机器上. 主节点:7000(0-5460) 70 ...
- Nginx模块之ngx_http_gzip_module
Module ngx_http_gzip_module 该ngx_http_gzip_module模块是一个使用"gzip"方法压缩响应的过滤器.这通常有助于将传输数据的大小减少一 ...
- MySQL如何使用WITH ROLLUP函数
一.WITH ROLLUP函数适用于跟在GROUP BY 字段后面进行分组求和使用 SELECT t1.`产品名称`,SUM(t1.`数量`),SUM(t1.`金额`),t1.`日期` FROM sh ...