diff options
author | Raphael McSinyx <vn.mcsinyx@gmail.com> | 2017-01-02 20:37:59 +0700 |
---|---|---|
committer | Raphael McSinyx <vn.mcsinyx@gmail.com> | 2017-01-02 20:37:59 +0700 |
commit | 57d767cf4e4d5b83645bda2c4e398fdd76d059e1 (patch) | |
tree | 557cc70d5dc663b5ee3bef2be4d749ddc3cfbc4c /others/easy20160714/22.c | |
parent | 7206ecee7579a10dd347d06b397b3790e969f8f3 (diff) | |
download | cp-57d767cf4e4d5b83645bda2c4e398fdd76d059e1.tar.gz |
Update others/easy20160714
Diffstat (limited to 'others/easy20160714/22.c')
-rw-r--r-- | others/easy20160714/22.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/others/easy20160714/22.c b/others/easy20160714/22.c new file mode 100644 index 0000000..d38c0f5 --- /dev/null +++ b/others/easy20160714/22.c @@ -0,0 +1,30 @@ +#define _GNU_SOURCE +#include <stdio.h> +#include <stdlib.h> + +int main() +{ + FILE *fi = fopen("INP.TXT", "r"), *fo = fopen("OUT.TXT", "w"); + int n, m, i, j = 0, *a, b; + + fscanf(fi, "%d %d", &n, &m); + a = malloc(n * sizeof(int)); + + for (i = 0; i < n; i++) + fscanf(fi, "%d", a + i); + + for (i = 0; i < m; i++) { + fscanf(fi, "%d", &b); + while (a[j] < b && j < n) + fprintf(fo, "%d ", a[j++]); + fprintf(fo, "%d ", b); + } + + while (j < n) + fprintf(fo, "%d ", a[j++]); + + fputc(10, fo); + fcloseall(); + + return 0; +} |