답안 #236793

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
236793 2020-06-03T10:14:40 Z Vimmer Vođe (COCI17_vode) C++14
0 / 120
235 ms 21112 KB
#include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>

//#pragma GCC optimize("unroll-loops")
//#pragma GCC optimize("-O3")
//#pragma GCC optimize("Ofast")
//#pragma GCC optimize("fast-math")
//#pragma GCC optimize("no-stack-protector")

#define F first
#define S second
#define sz(x) int(x.size())
#define pb push_back
#define N 100001
#define M ll(1e9 + 7)
#define inf 1e9 + 1e9

using namespace std;
//using namespace __gnu_pbds;

typedef long double ld;
typedef long long ll;
typedef short int si;
typedef array <int, 2> a2;

//typedef tree <int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;


int a[5005];

bool mk1[5005], mk0[5005];

vector <int> g[5005];

int main()
{
    //freopen("input.txt", "r", stdin); //freopen("output4.txt", "w", stdout);

    ios_base::sync_with_stdio(0); istream::sync_with_stdio(0); cin.tie(0); cout.tie(0);

    int n, m, k;

    cin >> n >> m >> k;

    for (int i = 0; i < n; i++) cin >> a[i];

    for (int i = m; i >= 0; i--)
        for (int j = i - 1; j >= i - k; j--) g[i].pb(j);

    mk0[m] = 1;

    for (int i = m; i >= 0; i--)
    {
        for (auto it : g[i])
        {
            if (mk0[i]) mk1[it] = 1;

            if (mk1[i]) mk0[it] = 1;
        }
    }

    for (int i = 0; i < n; i++)
    {
        int cur = i, v = 0;

        while (v != m)
        {
            int nxt = (cur + 1) % n;

            if (a[nxt] == a[cur])
            {
                bool fnd = 0;

                for (int j = v + 1; j <= min(m, v + k); j++)
                  if (mk1[j]) {v = j; fnd = 1; break;}

                if (!fnd) v++;
            }
            else
            {
                bool fnd = 0;

                for (int j = v + 1; j <= min(m, v + k); j++)
                  if (mk0[j]) {v = j; fnd = 1; break;}

                if (!fnd) v++;
            }

            cur = nxt;
        }

        cout << a[cur] << " ";
    }
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 512 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 512 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 512 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 6 ms 896 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 512 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 512 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 30 ms 1248 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 65 ms 3804 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 235 ms 21112 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 229 ms 20756 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -