제출 #283352

#제출 시각아이디문제언어결과실행 시간메모리
283352stoyan_malinin정렬하기 (IOI15_sorting)C++14
0 / 100
2 ms512 KiB
#include "sorting.h"
//#include "grader.cpp"

#include <vector>
#include <assert.h>
#include <iostream>

using namespace std;

int guessSubtask(int m, int *x, int *y)
{
    bool subtask2 = true;
    for(int i = 0;i<m;i++)
    {
        if(!(x[i]==0 && y[i]==0))
        {
            subtask2 = false;
            break;
        }
    }
    if(subtask2==true) return 2;

    return -1;
}

bool checkSorted(int n, int *s)
{
    for(int i = 1;i<n;i++)
    {
        if(s[i-1]>s[i]) return false;
    }

    return true;
}

int solve2(int n, int *s, int *p, int *q)
{
    if(checkSorted(n, s)==true) return 0;

    int swapInd = 1;
    p[0] = q[0] = 0;

    for(int i = 0;i<n;i++)
    {
        for(int j = i+1;j<n;j++)
        {
            if(s[j]==i)
            {
                swap(s[i], s[j]);
                p[swapInd] = i;
                q[swapInd] = j;
                swapInd++;

                if(checkSorted(n, s)==true) return swapInd;
                break;
            }
        }
    }

    assert(false);
}

int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[])
{
    int subtask = guessSubtask(M, X, Y);
    if(subtask==2) return solve2(N, S, P, Q);

    assert(false);
}
/*
6
0 1 2 3 4 5
5
0 0
0 0
0 0
0 0
0 0
*/

#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...