×
解除綁定,重新設定系統帳號的密碼
您的系統帳號 ID:
您的系統帳號:
您的帳號暱稱:
設定新密碼:
設定新密碼:
×
請輸入要加入的「課程代碼」
請向開設課程的使用者索取「課程代碼」
分類題庫
解題動態
排行榜
討論區
競賽區
登入
註冊
發表新討論
#38019:
bobobo0413
(Andy)
學校 : 國立臺灣大學
編號 : 252359
×
傳送站內訊息
傳給:
主題:
內容:
來源 : [163.30.63.65]
最後登入時間 :
2024-11-11 10:00:57
m370.
1. 機械鼠
--
2023年10月
APCS
| From: [125.227.84.47] | 發表日期 : 2023-10-22 21:31
2ms,322kb
比較左資料和右資料數量,題目說明n是奇數,且不會和初始位置x一樣,所以一定能分出量多者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
int c[b],i,d=0,e=0,f=2000,g=-2000;
for(i=0;i<b;i++)
{
cin>>c[i];
if(c[i]>a)
{
d++;
if(g<c[i])
g=c[i];
}
else if(c[i]<a)
{
e++;
if(f>c[i])
f=c[i];
}
}
if(d>e)
cout<<d<<" "<<g<<endl;
else if(d<e)
cout<<e<<" "<<f<<endl;
return 0;
}
ZeroJudge Forum