A11192 | The Overdosing Ubiquity
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The fundamental prerequisite for justice is not to be correct, but to be strong. That's why justice is always the victor.
The Cinderswarm Bee. Koyomi knows it.
The bees, according to their nature, live in a tree. To be more specific, a complete binary tree with $n$ nodes numbered from $1$ to $n$ . The node numbered $1$ is the root, and the parent of the $i$ -th ( $2<=i<=n$ ) node is . Note that, however, all edges in the tree are undirected.
Koyomi adds $m$ extra undirected edges to the tree, creating more complication to trick the bees. And you're here to count the number of simple paths in the resulting graph, modulo $10^{9}+7$ . A simple path is an alternating sequence of adjacent nodes and undirected edges, which begins and ends with nodes and does not contain any node more than once. Do note that a single node is also considered a valid simple path under this definition. Please refer to the examples and notes below for instances.
The Cinderswarm Bee. Koyomi knows it.
The bees, according to their nature, live in a tree. To be more specific, a complete binary tree with $n$ nodes numbered from $1$ to $n$ . The node numbered $1$ is the root, and the parent of the $i$ -th ( $2<=i<=n$ ) node is . Note that, however, all edges in the tree are undirected.
Koyomi adds $m$ extra undirected edges to the tree, creating more complication to trick the bees. And you're here to count the number of simple paths in the resulting graph, modulo $10^{9}+7$ . A simple path is an alternating sequence of adjacent nodes and undirected edges, which begins and ends with nodes and does not contain any node more than once. Do note that a single node is also considered a valid simple path under this definition. Please refer to the examples and notes below for instances.
输入格式
The first line of input contains two space-separated integers $n$ and $m$ ( $1<=n<=10^{9}$ , $0<=m<=4$ ) — the number of nodes in the tree and the number of extra edges respectively.
The following $m$ lines each contains two space-separated integers $u$ and $v$ ( $1<=u,v<=n$ , $u≠v$ ) — describing an undirected extra edge whose endpoints are $u$ and $v$ .
Note that there may be multiple edges between nodes in the resulting graph.
The following $m$ lines each contains two space-separated integers $u$ and $v$ ( $1<=u,v<=n$ , $u≠v$ ) — describing an undirected extra edge whose endpoints are $u$ and $v$ .
Note that there may be multiple edges between nodes in the resulting graph.
输出格式
Output one integer — the number of simple paths in the resulting graph, modulo $10^{9}+7$ .
输入输出样例
输入 #1
3 0
输出 #1
9
输入 #2
3 1 2 3
输出 #2
15
输入 #3
2 4 1 2 2 1 1 2 2 1
输出 #3
12
In the first example, the paths are: $(1)$ ; $(2)$ ; $(3)$ ; $(1,2)$ ; $(2,1)$ ; $(1,3)$ ; $(3,1)$ ; $(2,1,3)$ ; $(3,1,2)$ . (For the sake of clarity, the edges between nodes are omitted since there are no multiple edges in this case.)
In the second example, the paths are: $(1)$ ; $(1,2)$ ; $(1,2,3)$ ; $(1,3)$ ; $(1,3,2)$ ; and similarly for paths starting with $2$ and $3$ . ( $5×3=15$ paths in total.)
In the third example, the paths are: $(1)$ ; $(2)$ ; any undirected edge connecting the two nodes travelled in either direction. ( $2+5×2=12$ paths in total.)
In the second example, the paths are: $(1)$ ; $(1,2)$ ; $(1,2,3)$ ; $(1,3)$ ; $(1,3,2)$ ; and similarly for paths starting with $2$ and $3$ . ( $5×3=15$ paths in total.)
In the third example, the paths are: $(1)$ ; $(2)$ ; any undirected edge connecting the two nodes travelled in either direction. ( $2+5×2=12$ paths in total.)
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted