lightoj 1328 - A Gift from the Setter 【数学】

题目链接:lightoj 1328 - A Gift from the Setter

1328 - A Gift from the Setter
PDF (English) Statistics Forum
Time Limit: 2 second(s) Memory Limit: 32 MB
Problem setting is somewhat of a cruel task of throwing something at the contestants and having them scratch their head to derive a solution. In this problem, the setter is a bit kind and has decided to gift the contestants an algorithm which they should code and submit. The C/C++ equivalent code of the algorithm is given below:

long long GetDiffSum( int a[], int n )
{
long long sum = 0;
int i, j;
for( i = 0; i < n; i++ )
for( j = i + 1; j < n; j++ )
sum += abs( a[i] - a[j] ); // abs means absolute value
return sum;
}

The values of array a[] are generated by the following recurrence relation:

a[i] = (K * a[i-1] + C) % 1000007 for i > 0

where K, C and a[0] are predefined values. In this problem, given the values of K, C, n and a[0], you have find the result of the function

“long long GetDiffSum( int a[], int n )”

But the setter soon realizes that the straight forward implementation of the code is not efficient enough and may return the famous “TLE” and that’s why he asks you to optimize the code.

Input
Input starts with an integer T (≤ 100), denoting the number of test cases.

Each case contains four integers K, C, n and a[0]. You can assume that (1 ≤ K, C, a[0] ≤ 104) and (2 ≤ n ≤ 105).

Output
For each case, print the case number and the value returned by the function as stated above.

Sample Input
Output for Sample Input
2
1 1 2 1
10 10 10 5
Case 1: 1
Case 2: 7136758

求解函数值。

AC代码:

#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
typedef long long LL;
const int MAXN = 1e5 +10;
const int MOD = 1e6 + 7;
LL a[MAXN];
LL sum[MAXN];
int main()
{
    int t, kcase = 1;
    scanf("%d", &t);
    while(t--) {
        int K, C, n, v;
        scanf("%d%d%d%d", &K, &C, &n, &v);
        a[1] = v;
        for(int i = 2; i <= n; i++) {
            a[i] = (a[i-1] * K % MOD + C) % MOD;
        }
        sort(a+1, a+n+1);
        LL ans = 0;
        sum[0] = 0;
        for(int i = 1; i <= n; i++) {
            sum[i] = sum[i-1] + a[i];
        }
        for(int i = 1; i <= n; i++) {
            ans += sum[n] - sum[i] - 1LL * (n - i) * a[i];
        }
        printf("Case %d: %lld\n", kcase++, ans);
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值