标签:des style blog http color java os io strong
Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 2606 Accepted Submission(s): 1169
1 #include<cstring> 2 #include<cstdio> 3 #include<algorithm> 4 using namespace std; 5 struct node{ 6 int HP,DSP; 7 bool operator < (const node & a)const{ 8 return DSP*a.HP>a.DSP*HP; 9 } 10 }; 11 node st[22]; 12 int main(){ 13 14 int n; 15 int ans; 16 // freopen("test.in","r",stdin); 17 while(scanf("%d",&n)!=EOF){ 18 ans=0; 19 for(int i=0;i<n;i++){ 20 scanf("%d%d",&st[i].HP,&st[i].DSP); 21 } 22 sort(st,st+n); 23 for(int i=0;i<n;i++){ 24 for(int j=i;j<n;j++){ 25 ans+=st[j].DSP*st[i].HP; 26 } 27 } 28 printf("%d\n",ans); 29 } 30 return 0; 31 }
标签:des style blog http color java os io strong
原文地址:http://www.cnblogs.com/gongxijun/p/3933113.html