답안 #951394

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
951394 2024-03-21T22:53:16 Z zordeno Art Collections (BOI22_art) C++17
0 / 100
3000 ms 344 KB
#include<bits/stdc++.h>
#include "art.h"
//#include "sample_grader.cpp"
using namespace std;

#define     endl            '\n'
#define     ll              long long

vector <int> dx = {1, 0, 0, -1, 0, 0};
vector <int> dy = {0, 1, 0, 0, -1, 0};
vector <int> dz = {0, 0, 1, 0, 0, -1};

ll gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; }
ll lcm(ll a, ll b) { return a / gcd(a, b) * b; }

const ll MAX = 2005, MOD = 1e9 + 7, INF = 1e18;

void solve(int n)
{
	vector <int> vec(n);
	for (int i = 0; i < n; i++)
	{
		vec[i] = i + 1;
	}
	int compbef = publish(vec);
	if (compbef == 0)
	{
		answer(vec);
	}
	int j = n - 1;
	while (j >= 0)
	{
		for (int i = j; i > 0; i--)
		{
			swap(vec[i], vec[i - 1]);
			int compaft = publish(vec);
			if (compaft == 0)
			{
				answer(vec);
			}
			if (compaft > compbef)
			{
				swap(vec[i], vec[i - 1]);
				j--;
				break;
			}
			compbef = compaft;
		}
	}
}

Compilation message

interface.cpp: In function 'int publish(std::vector<int>)':
interface.cpp:20:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   20 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~
interface.cpp: In function 'void answer(std::vector<int>)':
interface.cpp:36:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   36 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Execution timed out 3055 ms 344 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Execution timed out 3055 ms 344 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Execution timed out 3055 ms 344 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Execution timed out 3055 ms 344 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Execution timed out 3055 ms 344 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Execution timed out 3055 ms 344 KB Time limit exceeded
4 Halted 0 ms 0 KB -