第十七屆中國計量大學程式設計競賽 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;
}
相關文章
- 某大學程式設計競賽程式設計
- 華中農業大學第十三屆程式設計競賽程式設計
- 第 10 屆 CCPC 中國大學生程式設計競賽濟南站 遊記程式設計
- 第二十屆西南科技大學ACM程式設計競賽(同步賽)ACM程式設計
- 北京資訊科技大學第十一屆程式設計競賽(重現賽)I程式設計
- 第15屆浙江省大學生程式設計競賽D題程式設計
- 華中農業大學第十三屆程式設計競賽 題解程式設計
- 中國計量大學現代科技學院第四屆“中競杯”程式設計校賽(同步賽) F.爬塔(DP)程式設計
- 第八屆山東省ACM大學生程式設計競賽總結ACM程式設計
- 山東省第七屆ACM大學生程式設計競賽-Reversed WordsACM程式設計
- 紹興市大學生程式設計競賽程式設計
- 山東省第一屆ACM大學生程式設計競賽-Balloons(搜尋)ACM程式設計
- 山東省第四屆ACM大學生程式設計競賽-Rescue The Princess(計算幾何)ACM程式設計
- [補題] 第 45 屆國際大學生程式設計競賽(ICPC)亞洲區域賽(上海)程式設計
- 湖南省大學生程式設計競賽系統設計程式設計
- 第十屆中國大學生程式設計競賽 重慶站(CCPC 2024 Chongqing Site)程式設計
- 第十屆山東省大學生程式設計競賽題解(A、F、M、C)程式設計
- QZEZ第一屆“飯吉圓”杯程式設計競賽程式設計
- 山東省第六屆ACM大學生程式設計競賽-Square Number(完全平方數)ACM程式設計
- 山東省第六屆ACM大學生程式設計競賽-Lowest Unique Price(桶排序)ACM程式設計排序
- M-災難預警-浙江農林大學第十九屆程式設計競賽暨天梯賽選拔賽程式設計
- 山東省第四屆ACM大學生程式設計競賽-Contest Print Server(模擬)ACM程式設計Server
- [題解][2021-2022年度國際大學生程式設計競賽第10屆陝西省程式設計競賽] Type The Strings程式設計
- 第十五屆浙江大學寧波理工學院程式設計大賽(同步賽)程式設計
- 2012年"浪潮杯"山東省第三屆ACM大學生程式設計競賽(熱身賽)ACM程式設計
- 2014年北京師範大學新生程式設計競賽網路賽程式設計
- 山東省第六屆ACM大學生程式設計競賽-Single Round Math(大數除法)ACM程式設計
- 第二屆“重科杯”重慶科技大學程式設計競賽(同步賽)ptlks的題解(2024.5.18)程式設計
- 山東省第四屆ACM大學生程式設計競賽-Alice and Bob(二進位制&&找規律)ACM程式設計
- 大學生電子設計競賽電源資料
- “位元組跳動杯”2018中國大學生程式設計競賽-女生專場程式設計
- “九韶杯”河科院程式設計協會第一屆程式設計競賽題目分析以及總結程式設計
- 第二屆“演算法控”馬拉松程式設計競賽 解題思路演算法程式設計
- 2024 CCPC第五屆遼寧省程式設計競賽 集訓2程式設計
- 第九屆中國大學生程式設計競賽 深圳站(CCPC 2023 Shenzhen Site)/ The 2nd Universal Cup. Stage 25: Shenzhen程式設計
- 程式設計競賽中讀檔案技能程式設計
- "華為杯"華南理工大學程式設計競賽(同步賽) H題解 還沒寫程式設計
- 第43屆ACM-ICPC國際大學生程式設計競賽 亞洲區域賽南京站現場賽名額分配相關說明ACM程式設計