Strange Partition CodeForces - 1471A
题意:
对于数组b可以两两合并其中的相连元素,beauty值就是对于数组b中的b[i]除以k向上取整的和,求出beauty值的范围。
题解:
题目给的是向上取整,也就是越合并值有可能越低,因为原本两个数分别向上取整(相当于多加2),合成一个数后最多加1
这样就可以知道不做操作就是取到最大值,全部合并就是取到最小值。
代码:
#include<bits/stdc++.h>
typedef long long ll;
using namespace std;
inline int read(){int s=0,w=1;char ch=getchar();while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();//s=(s<<3)+(s<<1)+(ch^48);return s*w;
}
const int maxn=1e5+9;
int a[maxn];
int main()
{int t;cin>>t;while(t--){int n,x;ll maxx=0,minn=0;ll sum=0;cin>>n>>x;for(int i=1;i<=n;i++){cin>>a[i];sum+=a[i];}double w;if(sum%x==0)minn=sum/x;else minn=sum/x+1;//minn=sum%x?sum/x+1:sum/x;for(int i=1;i<=n;i++){if(a[i]%x==0)a[i]=a[i]/x;else a[i]=a[i]/x+1;maxx+=a[i];}cout<<minn<<" "<<maxx<<endl;}return 0;
}