A15249 | 3SUM Closure
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an array $a$ of length $n$ . The array is called 3SUM-closed if for all distinct indices $i$ , $j$ , $k$ , the sum $a_i + a_j + a_k$ is an element of the array. More formally, $a$ is 3SUM-closed if for all integers $1 \leq i < j < k \leq n$ , there exists some integer $1 \leq l \leq n$ such that $a_i + a_j + a_k = a_l$ .
Determine if $a$ is 3SUM-closed.
Determine if $a$ is 3SUM-closed.
输入格式
The first line contains an integer $t$ ( $1 \leq t \leq 1000$ ) — the number of test cases.
The first line of each test case contains an integer $n$ ( $3 \leq n \leq 2 \cdot 10^5$ ) — the length of the array.
The second line of each test case contains $n$ integers $a_1, a_2, \dots, a_n$ ( $-10^9 \leq a_i \leq 10^9$ ) — the elements of the array.
It is guaranteed that the sum of $n$ across all test cases does not exceed $2 \cdot 10^5$ .
The first line of each test case contains an integer $n$ ( $3 \leq n \leq 2 \cdot 10^5$ ) — the length of the array.
The second line of each test case contains $n$ integers $a_1, a_2, \dots, a_n$ ( $-10^9 \leq a_i \leq 10^9$ ) — the elements of the array.
It is guaranteed that the sum of $n$ across all test cases does not exceed $2 \cdot 10^5$ .
输出格式
For each test case, output "YES" (without quotes) if $a$ is 3SUM-closed and "NO" (without quotes) otherwise.
You can output "YES" and "NO" in any case (for example, strings "yEs", "yes" and "Yes" will be recognized as a positive response).
You can output "YES" and "NO" in any case (for example, strings "yEs", "yes" and "Yes" will be recognized as a positive response).
输入输出样例
输入 #1
4 3 -1 0 1 5 1 -2 -2 1 -3 6 0 0 0 0 0 0 4 -1 2 -3 4
输出 #1
YES NO YES NO
In the first test case, there is only one triple where $i=1$ , $j=2$ , $k=3$ . In this case, $a_1 + a_2 + a_3 = 0$ , which is an element of the array ( $a_2 = 0$ ), so the array is 3SUM-closed.
In the second test case, $a_1 + a_4 + a_5 = -1$ , which is not an element of the array. Therefore, the array is not 3SUM-closed.
In the third test case, $a_i + a_j + a_k = 0$ for all distinct $i$ , $j$ , $k$ , and $0$ is an element of the array, so the array is 3SUM-closed.
In the second test case, $a_1 + a_4 + a_5 = -1$ , which is not an element of the array. Therefore, the array is not 3SUM-closed.
In the third test case, $a_i + a_j + a_k = 0$ for all distinct $i$ , $j$ , $k$ , and $0$ is an element of the array, so the array is 3SUM-closed.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted