洛谷—— P1168 中位數
阿新 • • 發佈:2017-07-19
push can 表示 cto problem 描述 n+1 pri int
https://www.luogu.org/problem/show?pid=1168
題目描述
給出一個長度為N的非負整數序列A[i],對於所有1 ≤ k ≤ (N + 1) / 2,輸出A[1], A[3], …, A[2k - 1]的中位數。[color=red]即[/color]前1,3,5,……個數的中位數。
輸入輸出格式
輸入格式:
輸入文件median.in的第1行為一個正整數N,表示了序列長度。
第2行包含N個非負整數A[i] (A[i] ≤ 10^9)。
輸出格式:
輸出文件median.out包含(N + 1) / 2行,第i行為A[1], A[3], …, A[2i – 1]的中位數。
輸入輸出樣例
輸入樣例#1:7 1 3 5 7 9 11 6輸出樣例#1:
1 3 5 6
說明
對於20%的數據,N ≤ 100;
對於40%的數據,N ≤ 3000;
對於100%的數據,N ≤ 100000。
1 #include <algorithm> 2 #include <cstdio> 3 #include <queue> 4 5 using namespace std; 6 7 priority_queue<int,vector<int>,less<int> >MAX; 8 priority_queue<int,vector<int>,greater<int> >MIN; 9 int ans,n,x,a[100000+15]; 10 11 12 int main() 13 { 14 scanf("%d",&n); 15 for(int i=1;i<=n;i++) scanf("%d",a+i); 16 // sort(a+1,a+n+1); 17 ans=a[1]; printf("%d",ans); 18 for(int i=2;i<=n;i+=2) 19 { 20 if(i+1>n) break; 21 for(int j=i;j<=i+1;j++) 22 if(a[j]>ans) MIN.push(a[j]); 23 else MAX.push(a[j]); 24 int size=i>>1; 25 if(MIN.size()>size) MAX.push(ans),ans=MIN.top(),MIN.pop(); 26 if(MAX.size()>size) MIN.push(ans),ans=MAX.top(),MAX.pop(); 27 printf("\n%d",ans); 28 } 29 return 0; 30 }
洛谷—— P1168 中位數