A14597 | Training Session
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Monocarp is the coach of the Berland State University programming teams. He decided to compose a problemset for a training session for his teams.
Monocarp has $n$ problems that none of his students have seen yet. The $i$ -th problem has a topic $a_i$ (an integer from $1$ to $n$ ) and a difficulty $b_i$ (an integer from $1$ to $n$ ). All problems are different, that is, there are no two tasks that have the same topic and difficulty at the same time.
Monocarp decided to select exactly $3$ problems from $n$ problems for the problemset. The problems should satisfy at least one of two conditions (possibly, both):
- the topics of all three selected problems are different;
- the difficulties of all three selected problems are different.
Your task is to determine the number of ways to select three problems for the problemset.
Monocarp has $n$ problems that none of his students have seen yet. The $i$ -th problem has a topic $a_i$ (an integer from $1$ to $n$ ) and a difficulty $b_i$ (an integer from $1$ to $n$ ). All problems are different, that is, there are no two tasks that have the same topic and difficulty at the same time.
Monocarp decided to select exactly $3$ problems from $n$ problems for the problemset. The problems should satisfy at least one of two conditions (possibly, both):
- the topics of all three selected problems are different;
- the difficulties of all three selected problems are different.
Your task is to determine the number of ways to select three problems for the problemset.
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 50000$ ) — the number of testcases.
The first line of each testcase contains an integer $n$ ( $3 \le n \le 2 \cdot 10^5$ ) — the number of problems that Monocarp have.
In the $i$ -th of the following $n$ lines, there are two integers $a_i$ and $b_i$ ( $1 \le a_i, b_i \le n$ ) — the topic and the difficulty of the $i$ -th problem.
It is guaranteed that there are no two problems that have the same topic and difficulty at the same time.
The sum of $n$ over all testcases doesn't exceed $2 \cdot 10^5$ .
The first line of each testcase contains an integer $n$ ( $3 \le n \le 2 \cdot 10^5$ ) — the number of problems that Monocarp have.
In the $i$ -th of the following $n$ lines, there are two integers $a_i$ and $b_i$ ( $1 \le a_i, b_i \le n$ ) — the topic and the difficulty of the $i$ -th problem.
It is guaranteed that there are no two problems that have the same topic and difficulty at the same time.
The sum of $n$ over all testcases doesn't exceed $2 \cdot 10^5$ .
输出格式
Print the number of ways to select three training problems that meet either of the requirements described in the statement.
输入输出样例
输入 #1
2 4 2 4 3 4 2 1 1 3 5 1 5 2 4 3 3 4 2 5 1
输出 #1
3 10
In the first example, you can take the following sets of three problems:
- problems $1$ , $2$ , $4$ ;
- problems $1$ , $3$ , $4$ ;
- problems $2$ , $3$ , $4$ .
Thus, the number of ways is equal to three.
- problems $1$ , $2$ , $4$ ;
- problems $1$ , $3$ , $4$ ;
- problems $2$ , $3$ , $4$ .
Thus, the number of ways is equal to three.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted