Submission #750109

# Submission time Handle Problem Language Result Execution time Memory
750109 2023-05-29T06:52:38 Z 7as__7 Zalmoxis (BOI18_zalmoxis) C++17
0 / 100
237 ms 10304 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]){
                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 228 ms 10304 KB not a zalsequence
2 Incorrect 211 ms 10176 KB not a zalsequence
3 Incorrect 215 ms 10172 KB not a zalsequence
4 Incorrect 211 ms 10172 KB not a zalsequence
5 Incorrect 220 ms 10176 KB not a zalsequence
6 Incorrect 211 ms 10188 KB not a zalsequence
# Verdict Execution time Memory Grader output
1 Incorrect 216 ms 10156 KB Unexpected end of file - int32 expected
2 Incorrect 212 ms 10108 KB Unexpected end of file - int32 expected
3 Incorrect 228 ms 10160 KB Unexpected end of file - int32 expected
4 Incorrect 213 ms 10180 KB Unexpected end of file - int32 expected
5 Incorrect 213 ms 10300 KB Unexpected end of file - int32 expected
6 Incorrect 209 ms 10184 KB Unexpected end of file - int32 expected
7 Incorrect 236 ms 10176 KB Unexpected end of file - int32 expected
8 Incorrect 237 ms 10188 KB Unexpected end of file - int32 expected
9 Incorrect 170 ms 8140 KB Unexpected end of file - int32 expected
10 Incorrect 67 ms 3276 KB Unexpected end of file - int32 expected
11 Incorrect 135 ms 5152 KB Unexpected end of file - int32 expected
12 Incorrect 0 ms 212 KB Unexpected end of file - int32 expected
13 Incorrect 1 ms 212 KB Unexpected end of file - int32 expected
14 Incorrect 1 ms 212 KB Unexpected end of file - int32 expected