hdu 4442 Physical Examination (2012年金华赛区现场赛A题)
生活随笔
收集整理的這篇文章主要介紹了
hdu 4442 Physical Examination (2012年金华赛区现场赛A题)
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
昨天模擬賽的時候坑了好久,剛開始感覺是dp,仔細(xì)一看數(shù)據(jù)范圍太大。
?
題目大意:一個人要參加考試,一共有n個科目,每個科目都有一個相應(yīng)的隊列,完成這門科目的總時間為a+b*(前面已完成科目所花的總時間)。問:怎樣安排考試的順序使考完所花的總時間最短。
?
分析:假設(shè)已經(jīng)花了time時間,在剩下的科目中任意取兩個科目x,y。
? ? ? ? 先考試x:Tx=time+(ay*time+ax+bx*by*(ax+time));
? ? ? ? 先考試y:Ty=time+(by*time+bx+ax+ay*(bx+time))。
化簡之后發(fā)現(xiàn)花費時間的差距在ax*by,ay*bx,那么按照ai/bi的大小進(jìn)行排序就ok了。
1 #include <stdio.h> 2 #include <string.h> 3 #include <stdlib.h> 4 5 #define N 100010 6 #define INF 0xffffffff 7 #define MOD (365*24*60*60) 8 9 struct node 10 { 11 __int64 a, b; 12 double s; 13 }; 14 node stu[N]; 15 16 int cmp (const void *a, const void *b) 17 { 18 node *c = (node *)a; 19 node *d = (node *)b; 20 21 return c->s > d->s ? 1:-1; 22 } 23 24 int main () 25 { 26 __int64 n, i, sum; 27 28 while (scanf ("%I64d", &n), n) 29 { 30 for (i=0; i<n; i++) 31 { 32 scanf ("%I64d %I64d", &stu[i].a, &stu[i].b); 33 if (!stu[i].a) 34 stu[i].s = 0; 35 else if (!stu[i].b) 36 stu[i].s = INF; 37 else 38 stu[i].s = 1.0 * stu[i].a / stu[i].b; 39 } 40 41 qsort (stu, n, sizeof(stu[0]), cmp); 42 sum = 0; 43 44 for (i=0; i<n; i++) 45 { 46 sum += (stu[i].a + stu[i].b * sum) % MOD; 47 sum %= MOD; 48 } 49 50 printf ("%I64d\n", sum); 51 } 52 53 return 0; 54 }?
轉(zhuǎn)載于:https://www.cnblogs.com/alihenaixiao/p/4040659.html
總結(jié)
以上是生活随笔為你收集整理的hdu 4442 Physical Examination (2012年金华赛区现场赛A题)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 广发银行信用卡怎么申请提临时额度?提额条
- 下一篇: 提平安银行信用卡临时额度有什么条件?申请