題目描述 給出一個長度為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的非負整數序列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。
編譯都不過居然能AC
雖然也不知道怎麼AC的。。
1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<cmath> 5 #include<ext/pb_ds/assoc_container.hpp> 6 #include<ext/pb_ds/tree_policy.hpp> 7 #include<functional> 8 using namespace std; 9 using namespace __gnu_pbds; 10 void read(int & n) 11 { 12 char c='+';int x=0;int flag=0; 13 while(c<'0'||c>'9') 14 { c=getchar(); if(c=='-') flag=1; } 15 while(c>='0'&&c<='9') 16 {x=x*10+(c-48);c=getchar();} 17 flag==1?n=-x:n=x; 18 } 19 int main() 20 { 21 int n;int p; 22 read(n); 23 //tree<int , null_type , less_equal<int> , rb_tree_tag , tree_order_statistics_node_update>t; 24 tree<int, null_type, std::less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> t; 25 for(int i=1;i<=n;i++) 26 { 27 read(p); 28 t.insert(p); 29 if(i%2==1) 30 printf("%d\n", *t.find_by_order(i / 2 )); 31 } 32 return 0; 33 }