标签:cstring sort amp while 多次 using ret type algorithm
题目描述
输入
输出
样例输入
100 100 2
4 5
5 1 2 3
1 1 2 3 3
样例输出
6
题解
啥数据结构都没有的sb题
我TM考场上这道sb题才拿了60分真TM丧心病狂。
读懂题之后大概是NOIP普及组小学生都会。
直接枚举最终时间,求出同学的不愉快度,然后根据A和B的大小关系决定是否应该调整,以及应该调整多少。使用一个前缀和维护时间和,并用两个指针维护第一个大于当前时间的等待时间和公布时间。
代码一点也不难,时间复杂度是$O(n)$的。
另外bzoj中说的$C=10^{18}$有误,应为$10^{16}$。
#include <cstdio> #include <cstring> #include <algorithm> #define N 100010 using namespace std; typedef long long ll; ll x[N] , y[N] , sx[N] , sy[N]; int main() { ll n , m , i , j , k , a , b , c , ans = 1ll << 62 , s1 , s2 , c1 , c2 , r = 0; scanf("%lld%lld%lld%lld%lld" , &a , &b , &c , &n , &m); for(i = 1 ; i <= n ; i ++ ) scanf("%lld" , &x[i]) , r = max(r , x[i]); for(i = 1 ; i <= m ; i ++ ) scanf("%lld" , &y[i]) , r = max(r , y[i]); sort(x + 1 , x + n + 1) , sort(y + 1 , y + m + 1); for(i = 1 ; i <= n ; i ++ ) sx[i] = sx[i - 1] + x[i]; for(i = 1 ; i <= m ; i ++ ) sy[i] = sy[i - 1] + y[i]; if(c >= 0x7fffffff) r = x[1]; for(i = 1 , j = k = 0 ; i <= r ; i ++ ) { while(j < n && x[j + 1] < i) j ++ ; while(k < m && y[k + 1] < i) k ++ ; s1 = i * k - sy[k] , s2 = sy[m] - sy[k] - i * (m - k) , c1 = c * (i * j - sx[j]); if(a >= b) c2 = s2 * b; else if(s1 >= s2) c2 = s2 * a; else c2 = s1 * a + (s2 - s1) * b; ans = min(ans , c1 + c2); } printf("%lld\n" , ans); return 0; }
标签:cstring sort amp while 多次 using ret type algorithm
原文地址:http://www.cnblogs.com/GXZlegend/p/7112579.html