标签:解释 贪心 c++ can 开始 span ima 解决 its
2 100 2 33 33 2
4
【输入输出样例解释1】
先加工第一个,需要2天时间,再加工第二个。需要缴纳的罚金为2×2=4。
【输入输出样例2】process.in
4
100
3 3
6 4
2 2
8 5
process.out
81
【输入输出样例解释2】
如果按照1→2→3→4的顺序进行加工,需要缴纳的罚金为0×3+3×4+(3+6)×2+
(3+6+2)×5=85;
最佳方案是3→1→2→4,此时需要缴纳的罚金为0×2+2×3+(2+3)×4+(2+3+6)×5=81。
【数据范围】
对于40%的数据,0<n≤10,000,0<ti,si≤10,000;
对于80%的数据,0<n≤100,000,0<ti,si≤2×109,0<m≤108;
对于100%的数据,0<n≤100,000,0<ti,si≤2×109,0<m≤1018。
这一道题看上去好难的样子鸭 加油哦
上面是老师发的一段讲解()(《若有》《所思》)
那么既然正解都出来了 卡一卡试试吧
#include<bits/stdc++.h> #define ll long long using namespace std; struct Node{ ll t,s; }arr[100005]; int cmp(Node a,Node b){ if(a.t*b.s<b.t*a.s) return 1; return 0; } ll cheng(ll a,ll b,ll m){ ll ans=0,t=a; while(b!=0){ if(b&1) ans=(ans+t)%m; t=(t+t)%m; b>>=1; } return ans; } int main(){ ll n,m; cin>>n>>m; for(ll i=1;i<=n;i++) scanf("%lld%lld",&arr[i].t,&arr[i].s); sort(arr+1,arr+n+1,cmp); ll sum=0,ans=0; for(int i=1;i<=n;i++){ ans=(ans+cheng(arr[i].s,sum,m))%m; sum+=arr[i].t; } cout<<ans; return 0; }
标签:解释 贪心 c++ can 开始 span ima 解决 its
原文地址:https://www.cnblogs.com/Tidoblogs/p/11260264.html