Cut(贪心/排序)
Cut
https://ac.nowcoder.com/acm/problem/14291
因为我们要求总代价最大,所以大的数字我们要让他尽可能晚的从序列中分割出来,因为这样就可以在每次算代价的时候都加上这个大的数字,这样就会使最后的总代价最大
代码
#include <map> #include <set> #include <cmath> #include <stack> #include <queue> #include <cstdio> #include <bitset> #include <vector> #include <iomanip> #include <sstream> #include <cstring> #include <iostream> #include <algorithm> #include <unordered_map> #define UpMing main #define re register #pragma GCC optimize(2) #define Accept return 0; #define lowbit(x) ((x)&(-(x))) #define mst(x, a) memset( x,a,sizeof(x) ) #define rep(i,a,b) for(int i=(a);i<=(b);++i) #define dep(i,a,b) for(int i=(a);i>=(b);--i) using namespace std; typedef long long ll; typedef pair<int,int> PII; typedef unsigned long long ull; const int inf =0x3f3f3f3f; const int maxn=5e5+7; const ll mod = 1e9+7; const int N =1e6+3; inline ll read() { ll x=0; bool f=0; char ch=getchar(); while (ch<'0'||'9'<ch) f|=ch=='-', ch=getchar(); while ('0'<=ch && ch<='9') x=x*10+ch-'0',ch=getchar(); return f?-x:x; } void out(ll x) { int stackk[20]; if(x<0) { putchar('-'); x=-x; } if(!x) { putchar('0'); return; } int top=0; while(x) stackk[++top]=x%10,x/=10; while(top) putchar(stackk[top--]+'0'); } ll n,a[maxn],ans,sum; int UpMing() { n=read(); for(int i=1 ;i<=n ;i++) a[i]=read(),sum+=a[i]; sort(a+1,a+1+n); for(int i=1 ;i<n ;i++) { ans+=sum; sum-=a[i]; } out(ans); Accept; }