CF1316A.Grade Allocation

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

nn students are taking an exam. The highest possible score at this exam is mm . Let aia_{i} be the score of the ii -th student. You have access to the school database which stores the results of all students.

You can change each student's score as long as the following conditions are satisfied:

  • All scores are integers
  • 0aim0 \leq a_{i} \leq m
  • The average score of the class doesn't change.

You are student 11 and you would like to maximize your own score.

Find the highest possible score you can assign to yourself such that all conditions are satisfied.

输入格式

Each test contains multiple test cases.

The first line contains the number of test cases tt ( 1t2001 \le t \le 200 ). The description of the test cases follows.

The first line of each test case contains two integers nn and mm ( 1n1031 \leq n \leq 10^{3} , 1m1051 \leq m \leq 10^{5} ) — the number of students and the highest possible score respectively.

The second line of each testcase contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( $ 0 \leq a_{i} \leq m$ ) — scores of the students.

输出格式

For each testcase, output one integer — the highest possible score you can assign to yourself such that both conditions are satisfied._

输入输出样例

  • 输入#1

    2
    4 10
    1 2 3 4
    4 5
    1 2 3 4

    输出#1

    10
    5

说明/提示

In the first case, $a = [1,2,3,4] $ , with average of 2.52.5 . You can change array aa to [10,0,0,0][10,0,0,0] . Average remains 2.52.5 , and all conditions are satisfied.

In the second case, 0ai50 \leq a_{i} \leq 5 . You can change aa to [5,1,1,3][5,1,1,3] . You cannot increase a1a_{1} further as it will violate condition 0aim0\le a_i\le m .

首页