Submission #814755

#TimeUsernameProblemLanguageResultExecution timeMemory
814755marvinthangAncient Machine 2 (JOI23_ancient2)C++17
37 / 100
107 ms424 KiB
/************************************* * 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); string left, right; auto query = [&] { return Query(m, a, b); }; 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; left += char('0' + (query() == i + 2)); } a[0] = a[1] = 0; b[0] = b[1] = 1; right += char('0' + query()); FORD(i, N - 1, mid) { right = '0' + right; int sz = right.size(); vector <int> kmp(sz + 1); vector <array <int, 2>> nxt(sz + 1); nxt[0][right[0] - '0'] = 1; FORE(i, 1, sz) { if (i > 1) kmp[i] = nxt[kmp[i - 1]][right[i - 1] - '0']; REP(j, 2) nxt[i][j] = j == right[i] - '0' ? i + 1 : nxt[kmp[i]][j]; } REP(i, sz + 1) { a[i] = nxt[i][0]; b[i] = nxt[i][1]; } if (query() != sz) right[0] = '1'; } return left + right; } #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
#Verdict Execution timeMemoryGrader output
Fetching results...