YTU 1337 運動員分組

2021-09-27 22:08:00 字數 723 閱讀 1536

有n個人參加100公尺短跑比賽。跑道為8條。程式的任務是按照盡量使每組的人數相差最少的原則分組。

例如:n=8時,分成1組即可。

n=9時,分成2組:一組5人,一組4人。

n=25時,分4組:7、6、6、6。

請程式設計計算分組數字。

從標準輸入獲得乙個正整數(1~100之間,不必考慮輸入錯誤的情況),表示參賽的人數。

程式輸出每個組的人數。從大到小順序輸出,每個數字一行。

copy

25
766

6

#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define inf 0x3f3f3f3f

typedef long long ll;

using namespace std;

int n,ct,fg;

int jg[50];

int main()

for(int i=0; iprintf("%d\n",jg[i]);

return 0;

}

運動員指派問題

用lingo解決 運動員指派問題 如下 model 運動員指派問題 5 persons and 4 jobs assignment problem sets person 1.5 job 1.4 assign person,job c,x endsets here are the parameter...

Oracle SQL語句(運動員)

drop table athlete create table athlete ano char 10 not null primary key,aname char 20 a char 5 ateam char 16 insert into athlete values 1001 金賢重 男 大連...

運動員名次問題

5位運動員參加了10公尺臺跳水比賽,有人讓他們 比賽結果 a選手說 b第二,我第三 b選手說 我第二,e第四 c選手說 我第一,d第二 d選手說 c最後,我第三 e選手說 我第四,a第一 比賽結束後,每位選手都說對了一半,請程式設計確定比賽的名次。如下 但是這裡會出現乙個問題,你會發現好多重複的名字...