第十七屆中國計量大學程式設計競賽 I- Isolated Pointset
第十七屆中國計量大學程式設計競賽 I- Isolated Pointset(簽到題)
連結:https://ac.nowcoder.com/acm/contest/7591/I
來源:牛客網
On a two-dimensional plane, YHH has a series of isolated points named PointSet, which contains N points in it. YHH would like to know if there is a way to draw a vertical bisector from any two points in the PointSet, passing through at least one point in the PointSet. Please help him.
輸入描述:
There are multiple test cases. The first line contains an integer T (1 ≤ T ≤ 2 × 10^5 ), indicating the number of test cases. For each test case:
Then followed T lines, each line contains an integer N (1 ≤ N ≤ 2 × 10^5 ), indicating the number of points in the PointSet.
輸出描述:
If there is a way to solve this problem, output “Yes”(without quotes), otherwise, output “No”(without quotes) instead.
輸入
2
4
5
輸出
Yes
Yes
思路
這題其實乍一看沒頭緒,其實畫幾個圖你會發現3點共圓。那麼大於3都可以變成圓。圓是可以被平分的。所以大於等於3就可以了。
程式碼
#include<iostream>
using namespace std;
int main(){
int n;
cin>>n;
while(n--){
int a;
cin>>a;
if(a>=3)
cout<<"Yes"<<endl;
else if(a<3)
cout<<"No"<<endl;
}
return 0;
}
相關文章
- 中國計量大學現代科技學院第四屆“中競杯”程式設計校賽(同步賽) F.爬塔(DP)程式設計
- 第 10 屆 CCPC 中國大學生程式設計競賽濟南站 遊記程式設計
- 華中農業大學第十三屆程式設計競賽程式設計
- 第十屆中國大學生程式設計競賽 重慶站(CCPC 2024 Chongqing Site)程式設計
- 華中農業大學第十三屆程式設計競賽 題解程式設計
- [題解][2021-2022年度國際大學生程式設計競賽第10屆陝西省程式設計競賽] Type The Strings程式設計
- 第二十屆西南科技大學ACM程式設計競賽(同步賽)ACM程式設計
- [補題] 第 45 屆國際大學生程式設計競賽(ICPC)亞洲區域賽(上海)程式設計
- 第15屆浙江省大學生程式設計競賽D題程式設計
- QZEZ第一屆“飯吉圓”杯程式設計競賽程式設計
- 2024國慶鋁紫程式設計競賽程式設計
- 北京資訊科技大學第十一屆程式設計競賽(重現賽)I程式設計
- 程式設計競賽中讀檔案技能程式設計
- 紹興市大學生程式設計競賽程式設計
- 第十屆山東省大學生程式設計競賽題解(A、F、M、C)程式設計
- 2024 CCPC第五屆遼寧省程式設計競賽 集訓2程式設計
- “位元組跳動杯”2018中國大學生程式設計競賽-女生專場程式設計
- 第九屆中國大學生程式設計競賽 深圳站(CCPC 2023 Shenzhen Site)/ The 2nd Universal Cup. Stage 25: Shenzhen程式設計
- 2024端午鋁紫程式設計競賽程式設計
- M-災難預警-浙江農林大學第十九屆程式設計競賽暨天梯賽選拔賽程式設計
- 第二屆“重科杯”重慶科技大學程式設計競賽(同步賽)ptlks的題解(2024.5.18)程式設計
- “九韶杯”河科院程式設計協會第一屆程式設計競賽題目分析以及總結程式設計
- 程式設計競賽中 C/C++ I/O 的使用程式設計C++
- 第十五屆浙江大學寧波理工學院程式設計大賽(同步賽)程式設計
- 2017中國大學生程式設計競賽 - 女生專場(SDKD 2024 Summer Training Contest K2)程式設計AI
- 【牛客訓練記錄】浙江機電職業技術大學第九屆程式設計競賽程式設計
- 牛客競賽,GDDU第十屆文遠知行杯新生程式設計競賽,摸魚記(BDEIKL題解,補G,ACFHJ)程式設計
- 第43屆ACM-ICPC國際大學生程式設計競賽 亞洲區域賽南京站現場賽名額分配相關說明ACM程式設計
- 【比賽覆盤】2024第七屆“傳智杯”全國大學生計算機大賽程式設計挑戰賽(初賽第一場)計算機程式設計
- 無錫學院2024年ACM大學生程式設計競賽校選賽 題解ACM程式設計
- 2020 年第一屆遼寧省大學生程式設計競賽 D.開心消消樂(點分治)程式設計
- 2024“釘耙程式設計”中國大學生演算法設計超級聯賽(6)程式設計演算法
- 2024“釘耙程式設計”中國大學生演算法設計超級聯賽(3)程式設計演算法
- 2024“釘耙程式設計”中國大學生演算法設計超級聯賽(8)程式設計演算法
- 2024“釘耙程式設計”中國大學生演算法設計超級聯賽(1)程式設計演算法
- 2024“釘耙程式設計”中國大學生演算法設計超級聯賽(2)程式設計演算法
- 挑戰程式設計競賽選讀-選擇排序程式設計排序
- 2023 國際大學生程式設計競賽亞洲區域賽(濟南站)(SMU Autumn 2024 Team Round 2)程式設計