CF859E.Desk Disorder
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A new set of desks just arrived, and it's about time! Things were getting quite cramped in the office. You've been put in charge of creating a new seating chart for the engineers. The desks are numbered, and you sent out a survey to the engineering team asking each engineer the number of the desk they currently sit at, and the number of the desk they would like to sit at (which may be the same as their current desk). Each engineer must either remain where they sit, or move to the desired seat they indicated in the survey. No two engineers currently sit at the same desk, nor may any two engineers sit at the same desk in the new seating arrangement.
How many seating arrangements can you create that meet the specified requirements? The answer may be very large, so compute it modulo 1000000007=109+7 .
输入格式
Input will begin with a line containing N ( 1<=N<=100000 ), the number of engineers.
N lines follow, each containing exactly two integers. The i -th line contains the number of the current desk of the i -th engineer and the number of the desk the i -th engineer wants to move to. Desks are numbered from 1 to 2⋅N . It is guaranteed that no two engineers sit at the same desk.
输出格式
Print the number of possible assignments, modulo 1000000007=109+7 .
输入输出样例
输入#1
4 1 5 5 2 3 7 7 3
输出#1
6
输入#2
5 1 10 2 10 3 10 4 10 5 5
输出#2
5
说明/提示
These are the possible assignments for the first example:
- 1 5 3 7
- 1 2 3 7
- 5 2 3 7
- 1 5 7 3
- 1 2 7 3
- 5 2 7 3