n<=10000000的图,满足:如果(i,j)>1就连一条边权1的无相变,问所有d(u,v) (u<=v)--u到v的最短路之和。

首先1和>n/2的质数都是孤立的点。然后两个数x,y如果(x,y)>1最短路就1,如果(x,y)=1且x,y都不是1或>n/2的质数一定能走,具体这么走:$P_x$--x的最小质因子,那就$x->p_x*p_y->y$,那这样都走不了,还有:$x->p_x*2->p_y*2->y$这种一定走得了,因为x或y如果是合数那$p_x$最大是根号的,再*2根本爆不了;如果是质数那由于<=n/2,所以自己*2一定不会爆,因此就统计1的路径数,2的路径数和3的路径数即可。

1的路径数:$\sum_{1<=x<=n,1<=y<=n}(x,y)>1=\sum_{x=1}^{n}x-1-\varphi (x)$。

3的路径数用总的减掉1和2的。

2的路径数,也就是满足$(x,y)=1$且$p_x*p_y<=n$且$x>1,y>1$且x,y都不是大于n/2的质数的:

(1)x,y都是合数:那直接枚举合数,然后$\sum_{y是合数}^{n} \varphi (y)- (<=y的质数) + (x的质因子数)-1$,注意到这一条说的质数、质因子都是包括>n/2的。

(2)x质y合:那也枚举合数,$\sum_{y是合数}^{n} s_y-(y的质因子数)$,其中$s_y$表示比$x*p_y<=n$的质数x的数量,注意到这一条说的质数、质因子都是不包括>n/2的。

(3)x质y质,那枚举质数,$\sum_{y是质数}^{n} x*y<=n$,即$x<=n/y$,注意到这里枚举的质数是<=n/2的,而且这里统计的x也是<=n/2的。

OK!

 #include<string.h>
#include<stdlib.h>
#include<stdio.h>
//#include<assert.h>
#include<algorithm>
//#include<iostream>
using namespace std; int n;
#define maxn 10000011
int prime[maxn/],lp=,phi[maxn],small[maxn],sum[][maxn],sonofbitch[][maxn]; bool notprime[maxn];
void pre(int n)
{
phi[]=; sum[][]=sum[][]=;
for (int i=;i<=n;i++)
{
sum[][i]=sum[][i-]+(!notprime[i] && i*<=n);
sum[][i]=sum[][i-]+(!notprime[i]);
if (!notprime[i]) {prime[++lp]=i; phi[i]=i-; sonofbitch[][i]=(i*<=n);
sonofbitch[][i]=; small[i]=i;}
for (int j=;j<=lp && 1ll*i*prime[j]<=n;j++)
{
notprime[i*prime[j]]=; small[i*prime[j]]=prime[j];
if (i%prime[j])
{
phi[i*prime[j]]=phi[i]*(prime[j]-);
sonofbitch[][i*prime[j]]=sonofbitch[][i]+(prime[j]*<=n);
sonofbitch[][i*prime[j]]=sonofbitch[][i]+;
}
else
{
phi[i*prime[j]]=phi[i]*prime[j];
sonofbitch[][i*prime[j]]=sonofbitch[][i];
sonofbitch[][i*prime[j]]=sonofbitch[][i];
break;
}
}
}
} int main()
{
scanf("%d",&n); pre(n);
#define LL long long
LL tot1=,tot2=,tot3=,m=n-(sum[][n]-sum[][n])-,tot=m*1ll*(m-)/; for (int i=;i<=n;i++) tot1+=i--phi[i]; for (int i=;i<=n;i++)
if (notprime[i])
tot2+=phi[i]-sum[][i]+sonofbitch[][i]-+sum[][n/small[i]]-sonofbitch[][i];
else if (i*<=n) tot2+=sum[][min(i-,n/i)]; tot3=tot-tot1-tot2; printf("%lld\n",tot1+tot2*+tot3*);
return ;
}

Codeforces870F. Paths的更多相关文章

  1. [LeetCode] Binary Tree Paths 二叉树路径

    Given a binary tree, return all root-to-leaf paths. For example, given the following binary tree: 1 ...

  2. [LeetCode] Unique Paths II 不同的路径之二

    Follow up for "Unique Paths": Now consider if some obstacles are added to the grids. How m ...

  3. [LeetCode] Unique Paths 不同的路径

    A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The ...

  4. leetcode : Binary Tree Paths

    Given a binary tree, return all root-to-leaf paths. For example, given the following binary tree: 1 ...

  5. UVA 10564 Paths through the Hourglass[DP 打印]

    UVA - 10564 Paths through the Hourglass 题意: 要求从第一层走到最下面一层,只能往左下或右下走 问有多少条路径之和刚好等于S? 如果有的话,输出字典序最小的路径 ...

  6. LeetCode-62-Unique Paths

    A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The ...

  7. Leetcode Unique Paths II

    Follow up for "Unique Paths": Now consider if some obstacles are added to the grids. How m ...

  8. POJ 3177 Redundant Paths(边双连通的构造)

    Redundant Paths Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 13717   Accepted: 5824 ...

  9. soj 1015 Jill's Tour Paths 解题报告

    题目描述: 1015. Jill's Tour Paths Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description Every ...

随机推荐

  1. jmeter(九)分布式测试

    Jmeter 是java 应用,对于CPU和内存的消耗比较大,因此,当需要模拟数以千计的并发用户时,使用单台机器模拟所有的并发用户就有些力不从心,甚至会引起JAVA内存溢出错误.为了让jmeter工具 ...

  2. Oracle函数大全下载

    Oracle函数大全下载 是一个压缩包,里面是一个chm格式的帮助文档,很实用.

  3. echart分组柱形图绑定数据

    <!DOCTYPE html> <head> <meta charset="utf-8"> <title>ECharts </ ...

  4. Android学习笔记(十) Activity的生命周期

    一.如何在一个应用程序中定义多个Activity -定义一个类,继承Activity -复写onCreate() setContentView(R.layout.secondLayout):设定该Ac ...

  5. 仿陌陌的ios客户端+服务端源码

    软件功能:模仿陌陌客户端,功能很相似,注册.登陆.上传照片.浏览照片.浏览查找附近会员.关注.取消关注.聊天.语音和文字聊天,还有拼车和搭车的功能,支持微博分享和查找好友. 后台是php+mysql, ...

  6. [转] 一个U盘病毒简单分析

    (转自:一个U盘病毒简单分析 - 瑞星网   原文日期:2014.03.25) U盘这个移动存储设备由于体积小.容量大.便于携带等优点,给人们的存储数据带来了很大的便利.但正是由于这种便利,也给病毒有 ...

  7. iTOP4418开发板7寸屏幕Android系统下横竖屏设置

    Android系统屏幕旋转设置 平台: iTOP4418开发板+7寸屏幕 1. Androd4.4源码可以编译成手机模式和平板模式,讯为iTop4418 开发平台的Android系统默认编译为平板模式 ...

  8. DEALLOCATE - 删除一个准备好的查询

    SYNOPSIS DEALLOCATE [ PREPARE ] plan_name DESCRIPTION 描述 DEALLOCATE 用于删除前面准备好的查询. 如果你没有明确 DEALLOCATE ...

  9. [转]解决右键用notepad++打开提示【ShellExecute failed (2): Is this command Correct? (Fix) 】

    最近发现右键使用notepad++打开文件时提示如下错误: ShellExecute failed (2): Is this command Correct? ... 经用搜索引擎搜索得知,应该是开启 ...

  10. QTreeWidgetItem和QTreeWidgetItemIterator

    1.{ ui->treeWidget->setHeaderHidden(true); ui->treeWidget->clear(); QTreeWidgetItem *ima ...