Codeforces 134A-Average Numbers(사고)
2076 단어 수제Codeforces
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
You are given a sequence of positive integers a1, a2, ..., an. Find all such indices i, that the i-th element equals the arithmetic mean of all other elements (that is all elements except for this one).
Input
The first line contains the integer n (2 ≤ n ≤ 2·105). The second line contains elements of the sequence a1, a2, ..., an (1 ≤ ai ≤ 1000). All the elements are positive integers.
Output
Print on the first line the number of the sought indices. Print on the second line the sought indices in the increasing order. All indices are integers from 1 to n.
If the sought elements do not exist, then the first output line should contain number 0. In this case you may either not print the second line or print an empty line.
Sample test(s)
input
5
1 2 3 4 5
output
1
3
input
4
50 50 50 50
output
4
1 2 3 4
: n , i , a[i] n<2*10^5 , , O(n*n) , a[i], , , (sum-a[i])/(n-1) , 。
#include
#include #include #include #include #include using namespace std; #define LL long long int a[200050],ans[200050]; int main() { int n; while(scanf("%d",&n)!=EOF) { int sum=0; for(int i=1;i<=n;i++) { scanf("%d",a+i); sum+=a[i]; } int cnt=0; for(int i=1;i<=n;i++) { int t=sum-a[i]; if(t%(n-1)==0) if(a[i]==t/(n-1)) ans[cnt++]=i; } printf("%d
",cnt); if(cnt) { for(int i=0;i
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
BC-Round 3 HDU 4908HDU 4908 제목 링크: 클릭하여 링크 열기 처음에 제목을 봤을 때 제목에 있는 median number의 뜻이 중간의 수인 줄 알았어요.역시 영어는 잘 못해...두 번 냈어요.나중에 경기를 봤을 때 스크...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.