Codeforces 1106CLunar New Year and Number Division
Posted awcxv
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 1106CLunar New Year and Number Division相关的知识,希望对你有一定的参考价值。
【链接】 我是链接,点我呀:)
【题意】
题意
【题解】
看了下样例解释就懂了。。。
每次选择最大最小的两个组合 然后加起来。。
【代码】
import java.io.IOException;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
static int n;
static int a[];
static long sqr(long x) {
return x*x;
}
public static void main(String[] args) throws IOException{
// TODO Auto-generated method stub
Scanner in = new Scanner(System.in);
n = in.nextInt();
a = new int[n+10];
for (int i = 1;i <= n;i++) a[i] = in.nextInt();
Arrays.sort(a, 1,n+1);
int l = 1,r = n;
long ans = 0;
while (l<=r) {
ans = ans + sqr(a[l]+a[r]);
l++;r--;
}
System.out.println(ans);
}
}
以上是关于Codeforces 1106CLunar New Year and Number Division的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces 1106BLunar New Year and Food Ordering
Codeforces 1106C Lunar New Year and Number DivisionLunar |数学
Lunar New Year and Red Envelopes CodeForces - 1106E (dp)
Codeforces 1106F Lunar New Year and a Recursive Sequence (数学线性代数线性递推数论BSGS扩展欧几里得算法)