Submission #64051

# Submission time Handle Problem Language Result Execution time Memory
64051 2018-08-03T08:57:41 Z Just_Solve_The_Problem Zalmoxis (BOI18_zalmoxis) C++11
0 / 100
329 ms 6576 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);
  if (k != 1) {
    return 0;
  }
  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) {
      if (cur != -1) {
        printf("%d ", cur);
        cur = -1;
      }
    }
    printf("%d ", a[i]);
  }
}

Compilation message

zalmoxis.cpp:12:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main() {
      ^
zalmoxis.cpp: In function 'int main()':
zalmoxis.cpp:13:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d", &n, &k);
   ~~~~~^~~~~~~~~~~~~~~~~
zalmoxis.cpp:19:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &a[i]);
     ~~~~~^~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 225 ms 6244 KB not a zalsequence
2 Incorrect 308 ms 6388 KB not a zalsequence
3 Incorrect 329 ms 6388 KB not a zalsequence
4 Incorrect 305 ms 6516 KB not a zalsequence
5 Incorrect 287 ms 6576 KB not a zalsequence
6 Incorrect 204 ms 6576 KB not a zalsequence
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 6576 KB Unexpected end of file - int32 expected
2 Incorrect 2 ms 6576 KB Unexpected end of file - int32 expected
3 Incorrect 3 ms 6576 KB Unexpected end of file - int32 expected
4 Incorrect 3 ms 6576 KB Unexpected end of file - int32 expected
5 Incorrect 2 ms 6576 KB Unexpected end of file - int32 expected
6 Incorrect 2 ms 6576 KB Unexpected end of file - int32 expected
7 Incorrect 3 ms 6576 KB Unexpected end of file - int32 expected
8 Incorrect 2 ms 6576 KB Unexpected end of file - int32 expected
9 Incorrect 2 ms 6576 KB Unexpected end of file - int32 expected
10 Incorrect 3 ms 6576 KB Unexpected end of file - int32 expected
11 Incorrect 2 ms 6576 KB Unexpected end of file - int32 expected
12 Incorrect 2 ms 6576 KB Unexpected end of file - int32 expected
13 Incorrect 3 ms 6576 KB Unexpected end of file - int32 expected
14 Incorrect 2 ms 6576 KB Unexpected end of file - int32 expected