Submission #814563

# Submission time Handle Problem Language Result Execution time Memory
814563 2023-08-08T08:21:47 Z marvinthang Ancient Machine 2 (JOI23_ancient2) C++17
0 / 100
73 ms 288 KB
/*************************************
*    author: marvinthang             *
*    created: 08.08.2023 11:02:57    *
*************************************/

#include "ancient2.h"
#include <bits/stdc++.h>

using namespace std;

#define                  fi  first
#define                  se  second
#define                left  ___left
#define               right  ___right
#define                TIME  (1.0 * clock() / CLOCKS_PER_SEC)
#define             MASK(i)  (1LL << (i))
#define           BIT(x, i)  ((x) >> (i) & 1)
#define  __builtin_popcount  __builtin_popcountll
#define              ALL(v)  (v).begin(), (v).end()
#define           REP(i, n)  for (int i = 0, _n = (n); i < _n; ++i)
#define          REPD(i, n)  for (int i = (n); i-- > 0; )
#define        FOR(i, a, b)  for (int i = (a), _b = (b); i < _b; ++i) 
#define       FORD(i, b, a)  for (int i = (b), _a = (a); --i >= _a; ) 
#define       FORE(i, a, b)  for (int i = (a), _b = (b); i <= _b; ++i) 
#define      FORDE(i, b, a)  for (int i = (b), _a = (a); i >= _a; --i) 
#define        scan_op(...)  istream & operator >> (istream &in, __VA_ARGS__ &u)
#define       print_op(...)  ostream & operator << (ostream &out, const __VA_ARGS__ &u)
#ifdef LOCAL
    #include "debug.h"
#else
    #define file(name) if (fopen(name".inp", "r")) { freopen(name".inp", "r", stdin); freopen(name".out", "w", stdout); }
    #define DB(...) 23
    #define db(...) 23
    #define debug(...) 23
#endif

template <class U, class V> scan_op(pair <U, V>)  { return in >> u.first >> u.second; }
template <class T> scan_op(vector <T>)  { for (size_t i = 0; i < u.size(); ++i) in >> u[i]; return in; }
template <class U, class V> print_op(pair <U, V>)  { return out << '(' << u.first << ", " << u.second << ')'; }
template <size_t i, class T> ostream & print_tuple_utils(ostream &out, const T &tup) { if constexpr(i == tuple_size<T>::value) return out << ")";  else return print_tuple_utils<i + 1, T>(out << (i ? ", " : "(") << get<i>(tup), tup); }
template <class ...U> print_op(tuple<U...>) { return print_tuple_utils<0, tuple<U...>>(out, u); }
template <class Con, class = decltype(begin(declval<Con>()))> typename enable_if <!is_same<Con, string>::value, ostream&>::type operator << (ostream &out, const Con &con) { out << '{'; for (__typeof(con.begin()) it = con.begin(); it != con.end(); ++it) out << (it == con.begin() ? "" : ", ") << *it; return out << '}'; }

// end of template

namespace {

}  // namespace

string Solve(int N) {
	string res;
	int mid = N / 2;
	int m = mid + 2;
	vector <int> a(m), b(m);
	REP(i, mid) {
		REP(j, i) a[j] = b[j] = j + 1;
		a[i] = i + 1;
		b[i] = i + 2;
		a[i + 1] = b[i + 1] = i + 1;
		a[i + 2] = b[i + 2] = i + 2;
		res += char('0' + (Query(m, a, b) == i + 2));
	}
	FOR(i, mid, N) {
		int j = i - mid;
		REP(k, mid) a[k] = b[k] = k + 1;
		a[mid] = b[mid] = 0;
		a[mid + 1] = b[mid + 1] = 1;
		if (res[j] == '0') {
			a[j] = j + 2;
			b[j] = j + 1;
			res += char('0' + (Query(m, a, b) == mid));
		} else {
			a[j] = j + 1;
			b[j] = j + 2;
			int v = Query(m, a, b);
			res += char('0' + (Query(m, a, b) != mid));
		}
	}
	return res;
}

#ifdef LOCAL

namespace {

constexpr int N_MAX = 1000;
constexpr int M_MAX = 1002;
constexpr int Q_MAX = 1000;

int N;
char S[N_MAX + 1];

int query_count = 0;
int query_m_max = 0;

void WrongAnswer(int code) {
	printf("Wrong Answer [%d]\n", code);
	exit(0);
}
}  // namespace

int Query(int m, std::vector<int> a, std::vector<int> b) {
	if (++query_count > Q_MAX) WrongAnswer(7);
	if (!(1 <= m && m <= M_MAX)) WrongAnswer(4);
	if ((int)a.size() != m || (int)b.size() != m) WrongAnswer(5);
	for (int i = 0; i < m; i++) {
		if (!(0 <= a[i] && a[i] <= m - 1) || !(0 <= b[i] && b[i] <= m - 1))
			WrongAnswer(6);
	}
	if (m > query_m_max) query_m_max = m;
	int memory = 0;
	for (int i = 0; i < N; i++) {
		if (S[i] == '0') {
			memory = a[memory];
		}
		if (S[i] == '1') {
			memory = b[memory];
		}
	}
	return memory;
}

int main() {
	file("ancient2");
	if (scanf("%d", &N) != 1) {
		fprintf(stderr, "Error while reading input.\n");
		exit(1);
	}
	if (scanf("%s", S) != 1) {
		fprintf(stderr, "Error while reading input.\n");
		exit(1);
	}
	std::string s = Solve(N);
	if ((int)s.size() != N) WrongAnswer(1);
	for (int i = 0; i < N; i++) {
		if (!(s[i] == '0' || s[i] == '1')) WrongAnswer(2);
	}
	for (int i = 0; i < N; i++) {
		if (s[i] != S[i]) WrongAnswer(-i);
	}
	printf("Accepted: %d\n", query_m_max);
	printf("Point: %d\n", 10 + (1002 - query_m_max) * (1002 - query_m_max) / 9000);
	return 0;
}
#endif

Compilation message

ancient2.cpp: In function 'std::string Solve(int)':
ancient2.cpp:75:8: warning: unused variable 'v' [-Wunused-variable]
   75 |    int v = Query(m, a, b);
      |        ^
# Verdict Execution time Memory Grader output
1 Incorrect 73 ms 288 KB Wrong Answer [7]
2 Halted 0 ms 0 KB -