今日SGU 5.14
生活随笔
收集整理的這篇文章主要介紹了
今日SGU 5.14
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
//SGU 131 還沒完全想清楚 留坑
SGU 259
題意:一個機器處理n個任務,每個任務有時間t和傳送時間l
收獲:貪心
#include<bits/stdc++.h>
#define de(x) cout<<#x<<"="<<x<<endl;
#define dd(x) cout<<#x<<"="<<x<<" ";
#define rep(i,a,b) for(int i=a;i<(b);++i)
#define repd(i,a,b) for(int i=a;i>=(b);--i)
#define repp(i,a,b,t) for(int i=a;i<(b);i+=t)
#define ll long long
#define mt(a,b) memset(a,b,sizeof(a))
#define fi first
#define se second
#define inf 0x3f3f3f3f
#define INF 0x3f3f3f3f3f3f3f3f
#define pii pair<int,int>
#define pdd pair<double,double>
#define pdi pair<double,int>
#define mp(u,v) make_pair(u,v)
#define sz(a) (int)a.size()
#define ull unsigned long long
#define ll long long
#define pb push_back
#define PI acos(-1.0)
#define qc std::ios::sync_with_stdio(false)
#define db double
#define all(a) a.begin(),a.end()
const int mod = 1e9+;
const int maxn = 1e2+;
const double eps = 1e-;
using namespace std;
bool eq(const db &a, const db &b) { return fabs(a - b) < eps; }
bool ls(const db &a, const db &b) { return a + eps < b; }
bool le(const db &a, const db &b) { return eq(a, b) || ls(a, b); }
ll gcd(ll a,ll b) { return a==?b:gcd(b%a,a); };
ll lcm(ll a,ll b) { return a/gcd(a,b)*b; }
ll kpow(ll a,ll b) {ll res=;a%=mod; if(b<) return ; for(;b;b>>=){if(b&)res=res*a%mod;a=a*a%mod;}return res;}
ll read(){
ll x=,f=;char ch=getchar();
while (ch<''||ch>''){if(ch=='-')f=-;ch=getchar();}
while (ch>=''&&ch<=''){x=x*+ch-'';ch=getchar();}
return x*f;
}
//inv[1]=1;
//for(int i=2;i<=n;i++) inv[i]=(mod-mod/i)*inv[mod%i]%mod;
struct E{
int t,l;
bool operator<(const E& c)const{
return l>c.l;
}
}e[maxn];
int main(){
int n;
scanf("%d",&n);
rep(i,,n) scanf("%d",&e[i].t);
rep(i,,n) scanf("%d",&e[i].l);
sort(e,e+n);
int ans = -inf,tim = ;
rep(i,,n){
tim+=e[i].t;
ans=max(ans,tim+e[i].l);
}
printf("%d\n",ans);
return ;
}
總結(jié)
以上是生活随笔為你收集整理的今日SGU 5.14的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【BZOJ1417】Pku3156 In
- 下一篇: margin-----总结----解析逻