# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
64050 | 2018-08-03T08:52:53 Z | Just_Solve_The_Problem | Zalmoxis (BOI18_zalmoxis) | C++11 | 359 ms | 6624 KB |
#include <bits/stdc++.h> using namespace std; const int N = (int)1e6 + 7; const int inf = (int)1e9 + 7; int n, k; int a[N]; map < int, int > cnt; main() { scanf("%d %d", &n, &k); int mn = inf; for (int i = 1; i <= n; i++) { scanf("%d", &a[i]); mn = min(mn, a[i]); cnt[a[i]]++; } int cur = 1; while (1) { if (cnt[mn] & 1) { cur = mn; break; } cnt[mn + 1] += cnt[mn] / 2; cnt[mn] = 0; mn++; } for (int i = 1; i <= n; i++) { if (a[i] == cur - 1) { if (cur != -1) { printf("%d ", cur); cur = -1; } } printf("%d ", a[i]); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 245 ms | 6384 KB | not a zalsequence |
2 | Incorrect | 256 ms | 6548 KB | not a zalsequence |
3 | Incorrect | 269 ms | 6548 KB | not a zalsequence |
4 | Incorrect | 266 ms | 6548 KB | not a zalsequence |
5 | Incorrect | 278 ms | 6568 KB | not a zalsequence |
6 | Incorrect | 236 ms | 6568 KB | not a zalsequence |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 212 ms | 6568 KB | Unexpected end of file - int32 expected |
2 | Incorrect | 280 ms | 6624 KB | Unexpected end of file - int32 expected |
3 | Incorrect | 293 ms | 6624 KB | Unexpected end of file - int32 expected |
4 | Incorrect | 359 ms | 6624 KB | Unexpected end of file - int32 expected |
5 | Incorrect | 235 ms | 6624 KB | Unexpected end of file - int32 expected |
6 | Incorrect | 276 ms | 6624 KB | Unexpected end of file - int32 expected |
7 | Incorrect | 276 ms | 6624 KB | Unexpected end of file - int32 expected |
8 | Incorrect | 265 ms | 6624 KB | Unexpected end of file - int32 expected |
9 | Incorrect | 184 ms | 6624 KB | Unexpected end of file - int32 expected |
10 | Incorrect | 69 ms | 6624 KB | Unexpected end of file - int32 expected |
11 | Incorrect | 179 ms | 6624 KB | Unexpected end of file - int32 expected |
12 | Incorrect | 2 ms | 6624 KB | Unexpected end of file - int32 expected |
13 | Incorrect | 3 ms | 6624 KB | Unexpected end of file - int32 expected |
14 | Incorrect | 3 ms | 6624 KB | Unexpected end of file - int32 expected |