結果
問題 | No.275 中央値を求めよ |
ユーザー |
![]() |
提出日時 | 2016-04-14 11:57:00 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 792 bytes |
コンパイル時間 | 171 ms |
コンパイル使用メモリ | 25,600 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-24 23:47:23 |
合計ジャッジ時間 | 1,275 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 38 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:14:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 14 | scanf("%d", &str[i]); | ~~~~~^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>#include <stdlib.h>void quick_sort(int *array, int l, int r);void change(int &p, int &k);int main(void){int n, i, *str;scanf("%d", &n);str = (int *)malloc(sizeof(int)*n);for (i = 0; i < n; i++) {scanf("%d", &str[i]);}quick_sort(str, 0, n-1);i = n/2;if (n%2 == 0) {printf("%g\n", (float)(str[i]+str[i-1])/2);} else {printf("%d\n", str[i]);}return 0;}void quick_sort(int *array, int left, int right){if (left >= right) return;int p = left, k = left+1;while (k <= right) {if (array[left] > array[k]) {change(array[p+1], array[k]);p++;}k++;}change(array[left], array[p]);quick_sort(array, left, p-1);quick_sort(array, p+1, right);}void change(int &p, int &k){int temp = p;p = k;k = temp;}