Submission #385047

#TimeUsernameProblemLanguageResultExecution timeMemory
385047qpwoeirutSorting (IOI15_sorting)C++17
20 / 100
2 ms620 KiB
#include "sorting.h"
#include <algorithm>
#include <cassert>
#include <iostream>

using namespace std;

#define val first
#define idx second

typedef pair<int,int> pii;

const int MN = 200005;

pii A[MN];

int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) {
    if (N == 1) return 0;
    int K = 0;

    if (X[0] == 0 && Y[0] == 0) {
        for (int i=0; i<N; ++i) {
            int idx = min_element(S+i, S+N) - S;
            if (idx == i) continue;
            P[K] = i;
            Q[K] = idx;
            ++K;
            swap(S[i], S[idx]);
        }
    } else if (X[0] == 0 && Y[0] == 1) {
        assert(0);
        for (int i=2; i<N; ++i) {
            int idx = min_element(S+i, S+N) - S;
            if (idx == i) continue;
            swap(S[0], S[1]);

            P[K] = i;
            Q[K] = idx;
            ++K;
            swap(S[i], S[idx]);
        }
        while (N > 2 && S[0] + S[1] > 1) {
            swap(S[0], S[1]);

            if (S[0] < S[1]) {
                P[K] = 1;
                swap(S[1], S[2]);
            } else {
                P[K] = 0;
                swap(S[0], S[2]);
            }
            Q[K] = 2;
            ++K;

            for (int i=2; i+1<N; ++i) {
                if (S[i] > S[i+1]) {
                    swap(S[0], S[1]);

                    swap(S[i], S[i+1]);
                    P[K] = i;
                    Q[K] = i+1;
                    ++K;
                } else break;
            }
        }

        if (S[0] == 1) {
            assert(S[1] == 0);
            P[K] = 0;
            Q[K] = 0;
            ++K;
        }
    } else assert(0);

    assert(is_sorted(S, S+N));

    assert(K <= M);
    return K;
}


Compilation message (stderr)

sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:23:45: warning: conversion from 'long int' to 'int' may change value [-Wconversion]
   23 |             int idx = min_element(S+i, S+N) - S;
      |                       ~~~~~~~~~~~~~~~~~~~~~~^~~
sorting.cpp:33:45: warning: conversion from 'long int' to 'int' may change value [-Wconversion]
   33 |             int idx = min_element(S+i, S+N) - S;
      |                       ~~~~~~~~~~~~~~~~~~~~~~^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...