Submission #750095

# Submission time Handle Problem Language Result Execution time Memory
750095 2023-05-29T06:44:55 Z 7as__7 Zalmoxis (BOI18_zalmoxis) C++17
0 / 100
283 ms 10220 KB
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int, int>
#define all(x) x.begin(),x.end()
const int sz = 1e6 + 1, mod = 1e9 + 7, inf = -1e18;
int dp[10001][1001] = {};
signed main()
{
    int n, k;
    cin >> n >> k;
    vector<int>a(n);
    map<int, int>mp;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        mp[a[i]]++;
    }
    int x = -1;
    int num = -1;
    for (int i = 1; i < n; i++) {
        if (a[i] - a[i - 1] == -2) {
            x = i + 1;
            break;
        }
        if (a[i] - a[i - 1] == -1) {
            if (mp[a[i] - 1] == 0){
                x = i + 1;
                break;
            }
        }
    }
    for (int i = 0; i < n; i++) {
        if (x == i)cout << a[i - 1] - 1 << ' ';
        cout << a[i] << ' ';
    }
}

Compilation message

zalmoxis.cpp: In function 'int main()':
zalmoxis.cpp:19:9: warning: unused variable 'num' [-Wunused-variable]
   19 |     int num = -1;
      |         ^~~
# Verdict Execution time Memory Grader output
1 Incorrect 232 ms 10172 KB not a zalsequence
2 Incorrect 221 ms 10184 KB not a zalsequence
3 Incorrect 238 ms 10176 KB not a zalsequence
4 Incorrect 229 ms 10136 KB not a zalsequence
5 Incorrect 235 ms 10184 KB not a zalsequence
6 Incorrect 263 ms 10188 KB not a zalsequence
# Verdict Execution time Memory Grader output
1 Incorrect 247 ms 10220 KB Unexpected end of file - int32 expected
2 Incorrect 253 ms 10184 KB Unexpected end of file - int32 expected
3 Incorrect 215 ms 10160 KB Unexpected end of file - int32 expected
4 Incorrect 242 ms 10168 KB Unexpected end of file - int32 expected
5 Incorrect 283 ms 10152 KB Unexpected end of file - int32 expected
6 Incorrect 236 ms 10192 KB Unexpected end of file - int32 expected
7 Incorrect 223 ms 10172 KB Unexpected end of file - int32 expected
8 Incorrect 230 ms 10172 KB Unexpected end of file - int32 expected
9 Incorrect 236 ms 8224 KB Unexpected end of file - int32 expected
10 Incorrect 68 ms 3288 KB Unexpected end of file - int32 expected
11 Incorrect 115 ms 5240 KB Unexpected end of file - int32 expected
12 Incorrect 1 ms 212 KB Unexpected end of file - int32 expected
13 Incorrect 1 ms 212 KB Unexpected end of file - int32 expected
14 Incorrect 0 ms 212 KB Unexpected end of file - int32 expected