QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#879804#5420. InscryptionSorahISAAC ✓167ms11368kbC++2311.4kb2025-02-02 14:47:452025-02-02 14:47:50

Judging History

This is the latest submission verdict.

  • [2025-02-02 14:47:50]
  • Judged
  • Verdict: AC
  • Time: 167ms
  • Memory: 11368kb
  • [2025-02-02 14:47:45]
  • Submitted

answer

#ifndef SorahISA
#define SorahISA
#include SorahISA __FILE__ SorahISA

void solve() {
    int N; cin >> N;
    
    vector<int> A(N);
    for (int &x : A) cin >> x;
    
    auto chk = [&](int p) -> bool {
        for (int i = 0, cnt = 1; i < N; ++i) {
            cnt += (A[i] ? A[i] : (i < p ? 1 : -1));
            if (cnt <= 0) return false;
        }
        return true;
    };
    
    if (not chk(N)) { print(-1); return; }
    
    int lo = 0, hi = N, mi;
    while (lo < hi) {
        mi = (lo + hi) >> 1;
        if (chk(mi)) hi = mi;
        else         lo = mi + 1;
    }
    // debug(lo);
    
    int cnt = 1, sum = 1;
    for (int i = 0; i < N; ++i) {
        if (A[i] == 0) A[i] = (i < lo ? 1 : -1);
        cnt += A[i], sum += (A[i] == 1);
    }
    print(sum / gcd(sum, cnt), cnt / gcd(sum, cnt));
}

int32_t main() {
    fastIO();
    
    int t = 1; cin >> t;
    for (int _ = 1; _ <= t; ++_) {
        // cout << "Case #" << _ << ": ";
        solve();
    }
    
    return 0;
}

#else

#ifdef local
#define _GLIBCXX_DEBUG 1
#endif
#pragma GCC optimize("Ofast", "unroll-loops")
#include <bits/stdc++.h>
using namespace std;
// #include <bits/extc++.h>
// #include <tr2/dynamic_bitset>

using i64 = long long;
using i128 = __int128;
#define int i64
using f80 = long double;
using f128 = __float128;
#define double f80
using pii = pair<int, int>;
template <typename T> using Prior = std::priority_queue<T>;
template <typename T> using prior = std::priority_queue<T, vector<T>, greater<T>>;

// #define X first
// #define Y second
#define eb emplace_back
#define ef emplace_front
#define ee emplace
#define pb pop_back
#define pf pop_front
#define ALL(x) begin(x), end(x)
#define RALL(x) rbegin(x), rend(x)
#define SZ(x) ((int)(x).size())
#define popcnt(x) __builtin_popcountll(x)

// template <size_t D, typename T> struct Vec : vector<Vec<D-1, T>> {
//     static_assert(D >= 1, "Vector dimension must be greater than zero!");
//     template <typename... Args> Vec(int n = 0, Args... args) : vector<Vec<D-1, T>>(n, Vec<D-1, T>(args...)) {}
// };

// template <typename T> struct Vec<1, T> : vector<T> {
//     Vec(int n = 0, const T& val = T()) : vector<T>(n, val) {}
// };

template <typename T> ostream& operator << (ostream &os, const vector<T> &vec)
{ for (size_t i = 0; i < size(vec); ++i) { if (i) os << " "; os << vec[i]; } return os; }

#ifdef local
#define fastIO() void()
#define debug(...) \
    _color.emplace_back("\u001b[31m"), \
    fprintf(stderr, "%sAt [%s], line %d: (%s) = ", _color.back().c_str(), __FUNCTION__, __LINE__, #__VA_ARGS__), \
    _do(__VA_ARGS__), _color.pop_back(), \
    fprintf(stderr, "%s", _color.back().c_str())
#define print(...) \
    fprintf(stdout, "%s", "\u001b[36m"), \
    _P(__VA_ARGS__), \
    fprintf(stdout, "%s", "\u001b[0m")

deque<string> _color{"\u001b[0m"};

template <typename T> concept is_string = is_same_v<T, string&> or is_same_v<T, const string&>;
template <typename T> concept is_iterable = requires (T _t) { begin(_t); };

template <typename T> inline void _print_err(T &&_t);
template <typename T> inline void _print_err(T &&_t) requires is_iterable<T> and (not is_string<T>);
template <size_t I, typename ...U> inline typename enable_if<I == sizeof...(U), void>::type _print_err(const tuple<U...> &);
template <size_t I, typename ...U> inline typename enable_if<I <  sizeof...(U), void>::type _print_err(const tuple<U...> &_t);
template <size_t I, typename ...U> inline typename enable_if<I == sizeof...(U), void>::type _print_err(tuple<U...> &);
template <size_t I, typename ...U> inline typename enable_if<I <  sizeof...(U), void>::type _print_err(tuple<U...> &_t);
template <typename T, typename U> ostream& operator << (ostream &os, const pair<T, U> &_tu);

inline void _do() { cerr << "\n"; }
template <typename T> inline void _do(T &&_t) { _print_err(_t), cerr << "\n"; }
template <typename T, typename ...U> inline void _do(T &&_t, U &&..._u) { _print_err(_t), cerr << ", ", _do(_u...); }
#else
#define fastIO() cin.tie(0)->sync_with_stdio(0)
#define debug(...) void()
#define print(...) _P(__VA_ARGS__)
#endif

inline void _P() { cout << "\n"; }
template <typename T> inline void _P(T &&_t) { cout << _t << "\n"; }
template <typename T, typename ...U> inline void _P(T &&_t, U &&..._u) { cout << _t << " ", _P(_u...); }

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());

inline int getRand(int L, int R) {
    if (L > R) swap(L, R);
    return (int)(rng() % ((uint64_t)R - L + 1) + L);
}

template <typename T, typename U> bool chmin(T &lhs, U rhs) { return lhs > rhs ? lhs = rhs, 1 : 0; }
template <typename T, typename U> bool chmax(T &lhs, U rhs) { return lhs < rhs ? lhs = rhs, 1 : 0; }

template <typename T> void make_unique(vector<T> &vec) {
    if (not is_sorted(ALL(vec))) sort(ALL(vec));
    vec.erase(unique(ALL(vec)), end(vec));
}

/// below are Fast I/O and _print_err templates ///

/*
/// Fast I/O by FHVirus ///
/// https://fhvirus.github.io/blog/2020/fhvirus-io/ ///

#include <unistd.h>

const int S = 65536;

int OP = 0;
char OB[S];

inline char RC() {
    static char buf[S], *p = buf, *q = buf;
    return p == q and (q = (p = buf) + read(0, buf, S)) == buf ? -1 : *p++;
}

inline int RI() {
    static char c;
    int a;
    while (((c = RC()) < '0' or c > '9') and c != '-' and c != -1);
    if (c == '-') {
        a = 0;
        while ((c = RC()) >= '0' and c <= '9') a *= 10, a -= c ^ '0';
    }
    else {
        a = c ^ '0';
        while ((c = RC()) >= '0' and c <= '9') a *= 10, a += c ^ '0';
    }
    return a;
}

inline void WI(int n, char c = '\n') {
    static char buf[20], p;
    if (n == 0) OB[OP++] = '0';
    p = 0;
    if (n < 0) {
        OB[OP++] = '-';
        while (n) buf[p++] = '0' - (n % 10), n /= 10;
    }
    else {
        while (n) buf[p++] = '0' + (n % 10), n /= 10;
    }
    for (--p; p >= 0; --p) OB[OP++] = buf[p];
    OB[OP++] = c;
    if (OP > S-20) write(1, OB, OP), OP = 0;
}

/// Fast I/O by FHVirus ///
/// https://fhvirus.github.io/blog/2020/fhvirus-io/ ///
*/

#ifdef local

template <typename T> inline void _print_err(T &&_t) { cerr << _t; }

template <typename T> inline void _print_err(T &&_t) requires is_iterable<T> and (not is_string<T>) {
    _color.emplace_back(_color.back()), ++_color.back()[3];
    cerr << _color.back() << "[";
    for (bool _first = true; auto &_x : _t) {
        if (!_first) cerr << ", ";
        _print_err(_x), _first = false;
    }
    cerr << "]" << (_color.pop_back(), _color.back());
}

template <typename T, typename U> ostream& operator << (ostream &os, const pair<T, U> &_tu) {
    _color.emplace_back(_color.back()), ++_color.back()[3];
    cerr << _color.back() << "(";
    _print_err(_tu.first), cerr << ", ", _print_err(_tu.second);
    cerr << ")" << (_color.pop_back(), _color.back());
    return os;
}

template <size_t I = 0, typename ...U> inline typename enable_if<I == sizeof...(U), void>::type _print_err(const tuple<U...> &) {
    cerr << ")" << (_color.pop_back(), _color.back());
}

template <size_t I = 0, typename ...U> inline typename enable_if<I <  sizeof...(U), void>::type _print_err(const tuple<U...> &_t) {
    if (!I) {
        _color.emplace_back(_color.back()), ++_color.back()[3];
        cerr << _color.back();
    }
    cerr << (I ? ", " : "("), _print_err(get<I>(_t)), _print_err<I+1, U...>(_t);
}

template <size_t I = 0, typename ...U> inline typename enable_if<I == sizeof...(U), void>::type _print_err(tuple<U...> &) {
    cerr << ")" << (_color.pop_back(), _color.back());
}

template <size_t I = 0, typename ...U> inline typename enable_if<I <  sizeof...(U), void>::type _print_err(tuple<U...> &_t) {
    if (!I) {
        _color.emplace_back(_color.back()), ++_color.back()[3];
        cerr << _color.back();
    }
    cerr << (I ? ", " : "("), _print_err(get<I>(_t)), _print_err<I+1, U...>(_t);
}

#endif

#endif

/**
 *                                                                                                                 
 *                                                                                                                 
 *                                                                                                                 
 *                            iiiiii         iiiiiiiiii       iiiiiiiiiiiiii                                       
 *                       iiiiiiiiiiiii   iiiiiii    iiii    iiiiiiiiiiiiiii                          ii   iiii     
 *                    iiiiiiii     iiiiiiiii         iiii       iiii iii              iii          iiiiiiiiii      
 *                 iiiiiii          iiiiii           iiii    iiii   ii           iiiiiiiiii      iiii iiii         
 *               iiiiii            iiiii             iiii iiii        iii      iiii    iiiiiiiiiiiiiiiii  ii       
 *             iiiiii            iiiiiii            iiiiiii       iiiiiiii   iii    iiiiiiiiiiiiii iii  iiii       
 *           iiiiii             iiiiiii            iiiii   ii   iiii       iiiiiiiiiii iiii  iii iiii iiii      iii
 *          iiiii              iiiiiiii       ii        iiiii iiii    iiiiiiiii        iii iii  iii  iii  ii  iiii 
 *        iiiiii              iiiiiiii      iiiii     iiiii iiiiiiiiiiiiiiii         iii  iii  ii  iii  iii iiii   
 *       iiiii                 iiiiii     iiii     iiiiii iiiiiii    iii iii       iiii  ii   i   ii  iii  iii     
 *     iiiiii                            iiii  iiiiiiiiiiiiiii       iii iiii   iiiii  iii  ii  iii  iii  ii       
 *    iiiii                              iiiiiiii iiiiiiiiii       iiii   iiiiiiiii            ii  iii  ii         
 *   iiiii                                     iiiiii  iiii      iiiii              iii      ii   ii  i            
 * iiiiii                                  iiiiiiii   iiiii    iiiii                        ii  ii   ii            
 * iiiii                                iiii  iiii    iiiiiiiiiiii                             ii                  
 *  iii                              iiii   iiii       iiiiiiii                                                    
 *                                iiiii   iiii                                                                     
 *                              iiii     iiii                                                                      
 *                            iiii    iiiii                                                                        
 *                          iii     iiiii                                                                          
 *                        iii     iiiii                                                                            
 *                       iii   iiiiii                                                                              
 *                       iiiiiiiii                                                                                 
 *                       iiiiii                                                                                    
 *                                                                                                                 
 *                                                                                                                 
 *                                                                                                                 
**/

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3584kb

input:

6
7
1 1 1 -1 1 1 -1
4
1 0 -1 0
4
0 -1 -1 0
1
0
2
0 0
1
-1

output:

3 2
3 1
-1
1 1
2 1
-1

result:

ok 6 lines

Test #2:

score: 0
Accepted
time: 167ms
memory: 3584kb

input:

1000000
1
1
1
-1
1
1
1
1
1
1
1
1
1
-1
1
-1
1
0
1
0
1
1
1
0
1
-1
1
0
1
1
1
0
1
1
1
0
1
1
1
0
1
0
1
0
1
1
1
-1
1
1
1
1
1
-1
1
0
1
1
1
0
1
-1
1
0
1
-1
1
1
1
-1
1
0
1
1
1
1
1
-1
1
0
1
-1
1
-1
1
-1
1
-1
1
0
1
0
1
-1
1
0
1
-1
1
0
1
0
1
0
1
0
1
0
1
-1
1
1
1
0
1
0
1
1
1
0
1
-1
1
1
1
1
1
0
1
1
1
1
1
1
1
0
1
...

output:

1 1
-1
1 1
1 1
1 1
1 1
-1
-1
1 1
1 1
1 1
1 1
-1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
-1
1 1
1 1
-1
1 1
1 1
1 1
-1
1 1
-1
1 1
-1
1 1
1 1
1 1
-1
1 1
-1
-1
-1
-1
1 1
1 1
-1
1 1
-1
1 1
1 1
1 1
1 1
1 1
-1
1 1
1 1
1 1
1 1
1 1
-1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
-1
-1
1 1
1 1
-1
1 1
1 1
1 1
1 1
-1
1 1
1 1
1 ...

result:

ok 1000000 lines

Test #3:

score: 0
Accepted
time: 81ms
memory: 3712kb

input:

181249
6
1 0 -1 0 1 0
4
1 -1 -1 -1
8
-1 0 0 0 1 -1 1 1
3
0 1 0
6
1 0 -1 1 -1 0
4
1 -1 -1 -1
9
0 1 0 -1 -1 0 -1 0 1
1
-1
3
0 -1 1
5
0 0 1 -1 1
3
1 -1 0
6
-1 0 0 -1 0 1
8
1 -1 -1 -1 0 1 -1 0
2
0 0
3
-1 1 0
3
0 -1 -1
10
0 1 0 -1 1 1 0 -1 1 0
3
1 0 0
9
1 -1 1 -1 0 -1 0 0 0
3
0 1 0
3
-1 0 0
7
-1 0 -1 -1 ...

output:

4 1
-1
-1
3 2
4 1
-1
3 1
-1
3 2
2 1
3 2
-1
-1
2 1
-1
-1
6 1
3 2
3 1
3 2
-1
-1
-1
-1
2 1
5 3
-1
5 4
2 1
-1
3 2
5 1
1 1
-1
3 2
-1
1 1
-1
2 1
1 1
-1
1 1
-1
1 1
3 2
-1
-1
-1
-1
3 2
5 2
1 1
-1
3 1
-1
-1
1 1
-1
6 1
3 2
-1
3 2
4 3
2 1
-1
5 3
3 1
6 1
-1
2 1
5 4
-1
1 1
-1
3 1
-1
-1
5 3
1 1
2 1
5 2
-1
3 1
4 3...

result:

ok 181249 lines

Test #4:

score: 0
Accepted
time: 53ms
memory: 3584kb

input:

19793
93
1 -1 1 1 -1 -1 1 0 0 0 0 1 1 -1 -1 -1 0 -1 -1 1 -1 0 0 0 0 1 0 -1 -1 1 -1 1 -1 1 -1 1 1 -1 1 0 1 0 -1 -1 0 1 1 0 -1 -1 0 1 1 0 -1 1 -1 -1 -1 0 0 0 1 -1 0 1 -1 0 0 0 1 0 -1 1 -1 -1 1 -1 0 1 -1 0 -1 -1 1 0 0 0 0 0 0 -1 -1
36
0 1 1 -1 1 -1 0 1 1 1 0 -1 1 1 -1 0 1 1 1 1 0 1 -1 -1 1 -1 1 0 -1 0 ...

output:

24 1
19 1
12 1
47 4
12 1
22 1
23 3
14 1
11 2
46 1
-1
-1
-1
26 3
-1
-1
13 1
2 1
-1
33 4
41 2
-1
43 2
-1
-1
-1
-1
25 1
7 1
-1
-1
-1
-1
-1
11 2
2 1
-1
27 4
-1
31 1
14 1
20 1
-1
5 3
38 1
24 1
-1
2 1
23 2
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
18 1
50 1
37 1
19 2
-1
21 1
-1
-1
14 1
15 2
30 1
-1
13 3
-1
-...

result:

ok 19793 lines

Test #5:

score: 0
Accepted
time: 48ms
memory: 3840kb

input:

1987
350
-1 1 0 0 0 -1 0 1 -1 1 0 0 -1 1 1 -1 1 1 -1 -1 -1 -1 0 1 1 0 1 0 0 0 -1 0 1 -1 1 0 1 -1 -1 1 0 1 1 1 -1 0 0 0 1 0 1 0 0 1 -1 1 0 1 0 1 -1 1 0 1 -1 -1 0 -1 1 0 -1 1 1 1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 -1 0 1 1 -1 -1 1 0 1 -1 0 0 -1 -1 1 0 0 -1 0 -1 1 1 0 -1 1 -1 0 -1 1 -1 1 1 -1 0 0 1 -1 1 0 1 ...

output:

-1
-1
182 3
57 2
205 2
262 3
428 3
25 1
333 2
-1
469 1
440 3
176 3
-1
-1
-1
175 2
-1
44 1
-1
-1
-1
-1
-1
-1
135 1
-1
-1
-1
-1
-1
-1
-1
470 3
158 5
215 1
-1
-1
-1
-1
55 1
-1
-1
-1
241 1
175 11
-1
393 1
224 5
45 1
165 1
209 1
-1
488 1
15 1
-1
-1
-1
-1
-1
312 5
-1
-1
-1
-1
78 1
211 2
-1
-1
172 1
458 1
...

result:

ok 1987 lines

Test #6:

score: 0
Accepted
time: 52ms
memory: 3712kb

input:

188
5255
1 0 -1 -1 1 0 0 0 -1 0 -1 1 0 -1 1 0 -1 0 -1 0 0 0 0 -1 -1 0 0 1 -1 1 0 -1 0 -1 -1 1 0 1 -1 1 -1 1 0 1 1 1 -1 1 1 1 -1 0 -1 -1 0 0 1 1 0 0 -1 -1 0 1 0 0 1 0 -1 -1 1 -1 -1 1 0 -1 1 0 0 -1 1 -1 -1 -1 1 1 -1 0 1 1 -1 -1 1 0 -1 -1 -1 0 1 1 1 -1 0 1 -1 1 -1 0 1 0 -1 1 0 0 1 0 0 -1 1 1 -1 1 1 -1 ...

output:

2629 2
-1
-1
2154 1
1205 2
2907 1
-1
3373 2
4531 4
-1
3399 2
-1
-1
-1
-1
470 3
-1
1737 1
-1
-1
1475 2
4915 3
705 7
-1
2269 2
4587 2
-1
2021 1
-1
2990 7
-1
-1
-1
-1
848 1
1533 1
-1
-1
595 1
-1
-1
-1
1553 4
-1
225 4
-1
-1
-1
1697 3
494 1
-1
2433 1
-1
-1
-1
-1
-1
-1
931 3
-1
3211 1
1119 1
1382 1
1591 1...

result:

ok 188 lines

Test #7:

score: 0
Accepted
time: 64ms
memory: 4592kb

input:

19
48437
-1 1 1 -1 0 0 -1 1 -1 1 -1 -1 -1 -1 -1 0 1 0 1 -1 -1 1 -1 -1 1 1 1 0 1 -1 0 0 -1 -1 0 0 1 0 0 1 1 1 1 0 -1 0 -1 1 1 -1 -1 0 1 1 0 0 0 1 0 -1 0 -1 1 0 0 0 -1 1 1 -1 0 0 0 0 -1 0 -1 0 -1 0 1 0 -1 1 0 1 -1 1 0 1 1 0 0 1 -1 -1 0 1 -1 0 1 1 -1 1 -1 0 -1 -1 1 0 -1 1 0 1 0 0 1 1 0 1 1 -1 0 -1 0 1 ...

output:

-1
-1
-1
3841 5
11848 1
24812 1
-1
46995 2
13406 1
-1
18922 5
-1
-1
-1
10079 4
-1
-1
2267 3
48220 1

result:

ok 19 lines

Test #8:

score: 0
Accepted
time: 40ms
memory: 11236kb

input:

1
1000000
-1 0 0 -1 0 -1 0 1 -1 1 1 0 1 -1 0 1 -1 1 0 1 -1 1 1 0 -1 1 -1 1 -1 0 1 -1 -1 -1 0 0 -1 -1 -1 -1 -1 0 -1 0 0 1 1 -1 0 0 -1 -1 0 -1 -1 1 -1 0 1 -1 0 0 1 1 1 -1 -1 1 0 -1 -1 1 -1 1 -1 1 1 1 0 0 1 1 0 -1 1 1 0 0 1 0 -1 -1 -1 -1 0 -1 1 0 0 0 1 -1 -1 1 0 0 0 0 0 1 -1 0 0 -1 -1 0 1 -1 -1 -1 1 -1...

output:

-1

result:

ok single line: '-1'

Test #9:

score: 0
Accepted
time: 57ms
memory: 3712kb

input:

95250
18
1 1 0 1 1 -1 1 1 1 0 -1 1 1 1 1 0 1 1
10
1 1 1 1 1 1 1 1 1 1
18
1 1 1 0 -1 -1 1 1 1 1 1 -1 1 1 1 1 1 -1
14
1 1 1 1 1 -1 1 1 1 0 1 0 1 1
18
1 1 1 1 -1 1 1 -1 1 1 1 1 1 1 1 0 -1 -1
15
1 1 1 1 1 1 -1 1 1 1 1 1 1 1 1
18
-1 1 0 1 1 1 1 0 1 1 1 1 1 1 0 1 1 1
9
0 1 1 1 -1 1 1 1 1
9
1 1 1 1 1 1 1 1...

output:

14 9
1 1
14 9
4 3
14 9
15 14
-1
9 8
1 1
1 1
13 10
1 1
3 2
-1
4 3
7 5
6 5
11 10
1 1
3 2
-1
15 13
1 1
5 2
8 7
3 2
17 15
6 5
1 1
5 3
7 5
5 4
13 8
-1
10 9
14 11
4 3
10 7
1 1
-1
2 1
1 1
4 3
1 1
14 13
5 3
3 2
13 12
-1
1 1
5 4
20 19
4 3
10 9
7 5
12 11
9 8
13 11
1 1
8 7
4 3
17 15
9 8
1 1
1 1
3 2
16 13
3 2
1...

result:

ok 95250 lines

Test #10:

score: 0
Accepted
time: 69ms
memory: 3712kb

input:

95470
18
0 0 -1 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 0
1
0
6
0 1 -1 0 0 0
2
-1 -1
11
-1 0 1 0 -1 1 0 0 0 0 0
9
0 0 0 0 0 0 0 0 -1
3
1 0 -1
1
0
12
0 0 0 1 -1 0 -1 0 0 0 0 0
10
0 0 0 0 0 0 0 -1 0 0
11
0 0 0 -1 0 0 0 0 0 0 0
9
-1 0 0 0 0 0 0 0 0
16
0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0
8
0 0 0 0 0 0 0 0
4
0 0 0 0
...

output:

10 1
1 1
4 1
-1
-1
3 1
3 2
1 1
7 1
6 1
7 2
-1
9 1
5 1
3 1
-1
8 1
11 1
10 1
9 1
9 2
8 1
11 1
9 2
11 3
-1
8 3
5 1
-1
9 2
3 2
9 2
4 1
7 3
11 2
5 2
7 2
5 1
11 1
2 1
11 1
5 1
7 1
1 1
-1
3 2
11 2
1 1
5 1
3 2
5 2
2 1
4 1
9 1
-1
-1
2 1
8 1
2 1
1 1
3 1
9 1
8 1
4 1
9 2
11 1
4 1
-1
5 2
2 1
3 1
7 2
4 1
9 1
3 1
...

result:

ok 95470 lines

Test #11:

score: 0
Accepted
time: 79ms
memory: 3712kb

input:

95283
1
1
8
1 0 -1 0 1 0 1 0
10
0 0 0 0 0 0 1 1 1 1
16
0 0 1 0 0 1 1 0 1 0 1 0 1 0 0 0
1
0
16
0 1 1 1 0 1 0 0 1 1 0 0 0 1 0 1
17
1 0 0 0 -1 1 1 1 0 1 1 0 0 -1 0 1 1
11
1 -1 0 1 1 1 1 1 1 1 1
11
0 0 1 1 0 1 0 1 1 0 1
15
0 1 0 0 1 0 1 1 1 0 -1 0 0 1 1
11
1 0 0 0 1 1 0 -1 0 1 0
14
0 0 1 0 0 1 0 0 1 0 0...

output:

1 1
5 1
8 5
9 1
1 1
10 3
11 4
11 10
2 1
5 2
7 2
3 1
12 5
7 2
2 1
1 1
2 1
7 4
2 1
4 1
13 7
7 2
2 1
1 1
4 1
7 3
1 1
-1
1 1
4 1
2 1
7 2
4 1
3 1
1 1
2 1
5 3
8 3
2 1
13 8
3 1
7 3
2 1
13 6
4 1
5 2
-1
13 7
11 1
3 1
9 4
1 1
5 1
2 1
11 1
12 5
7 4
3 1
3 1
3 1
7 4
5 2
13 7
5 1
7 2
2 1
5 2
1 1
-1
6 5
4 1
1 1
1 ...

result:

ok 95283 lines

Test #12:

score: 0
Accepted
time: 59ms
memory: 3712kb

input:

94921
4
1 1 0 1
8
1 1 1 1 1 -1 1 1
6
-1 -1 1 1 1 1
7
0 1 1 1 1 1 1
19
1 1 1 1 1 1 1 -1 1 1 1 1 0 -1 1 1 1 1 1
18
1 1 1 1 1 -1 1 0 1 1 1 1 -1 -1 1 1 -1 1
2
1 -1
15
1 1 1 -1 1 1 1 1 -1 1 1 1 0 0 1
4
1 -1 1 1
18
1 1 1 1 1 1 0 0 1 1 1 1 -1 0 1 1 1 1
19
1 1 1 1 1 -1 -1 1 1 1 1 1 1 1 1 1 -1 1 1
5
1 1 1 1 ...

output:

4 3
8 7
-1
1 1
17 14
14 9
2 1
3 2
4 3
15 11
17 14
1 1
1 1
5 2
13 7
20 19
5 4
1 1
-1
3 2
5 3
1 1
11 8
-1
4 3
4 3
7 4
7 5
1 1
3 2
6 5
16 11
6 5
-1
7 5
3 2
1 1
3 2
5 4
4 3
3 2
13 12
12 11
9 5
7 4
-1
-1
1 1
6 5
1 1
10 9
7 5
-1
-1
3 2
7 6
7 6
4 3
-1
1 1
4 3
5 4
12 11
-1
8 7
17 13
5 3
3 2
-1
7 2
5 4
-1
7 ...

result:

ok 94921 lines

Test #13:

score: 0
Accepted
time: 70ms
memory: 3584kb

input:

95421
15
0 0 0 -1 0 0 0 0 0 0 -1 -1 0 0 0
20
0 -1 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 1 0 0 0
15
1 -1 0 0 -1 0 0 0 0 0 -1 0 0 -1 0
14
0 0 0 1 1 0 0 0 0 0 0 -1 -1 0
4
1 0 0 -1
8
0 0 0 0 1 0 0 0
7
0 0 1 -1 0 0 0
2
-1 0
3
0 0 0
9
-1 0 0 0 0 0 0 0 0
7
0 0 0 0 0 0 0
8
0 0 0 -1 0 0 0 -1
17
0 -1 0 0 1 0 0 -1 0 -...

output:

9 2
-1
9 2
8 1
3 1
5 1
5 2
-1
3 2
-1
5 2
5 1
5 1
-1
3 1
10 1
5 1
-1
5 1
-1
10 3
6 1
3 2
5 2
3 1
1 1
10 1
11 2
1 1
11 1
3 1
2 1
-1
-1
4 1
3 2
-1
8 1
11 2
11 1
-1
-1
6 1
-1
5 2
4 1
-1
1 1
3 1
6 1
4 1
7 2
5 2
-1
5 2
5 1
6 1
1 1
3 2
8 1
3 1
3 1
4 1
3 1
-1
10 1
11 2
8 1
4 1
9 1
-1
7 1
7 1
-1
8 1
9 2
-1
1...

result:

ok 95421 lines

Test #14:

score: 0
Accepted
time: 58ms
memory: 11136kb

input:

1
1000000
1 -1 1 1 1 1 1 1 1 1 1 -1 -1 1 1 1 1 -1 1 1 1 1 1 1 -1 0 1 0 1 1 1 1 1 -1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -1 1 -1 1 1 1 1 1 -1 1 1 1 1 1 1 0 1 1 1 0 1 1 -1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 -1 1 1 -1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1...

output:

833396 666791

result:

ok single line: '833396 666791'

Test #15:

score: 0
Accepted
time: 79ms
memory: 11236kb

input:

1
1000000
0 0 0 -1 0 -1 -1 0 -1 0 0 0 1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 1 0 ...

output:

500001 1

result:

ok single line: '500001 1'

Test #16:

score: 0
Accepted
time: 128ms
memory: 11240kb

input:

1
1000000
1 0 1 0 0 1 1 1 0 1 1 -1 0 1 0 -1 0 1 1 1 0 1 1 1 1 1 -1 1 0 0 -1 1 1 1 0 1 0 1 0 -1 1 0 0 1 1 0 -1 1 0 1 0 0 1 1 1 -1 0 0 1 1 1 0 1 1 0 0 -1 0 1 0 0 0 0 1 1 0 0 1 1 -1 0 1 0 1 0 0 1 0 0 1 0 0 1 0 1 1 -1 0 1 1 1 1 0 0 0 0 0 1 -1 1 0 0 0 0 1 1 1 1 0 1 1 1 0 1 0 0 1 0 1 0 1 1 1 0 1 0 0 1 1 1...

output:

500013 25

result:

ok single line: '500013 25'

Test #17:

score: 0
Accepted
time: 58ms
memory: 11240kb

input:

1
1000000
1 -1 1 1 1 -1 1 1 -1 1 -1 1 1 1 1 1 1 1 1 1 0 1 -1 1 1 1 0 0 -1 -1 1 1 1 1 -1 0 0 1 1 1 1 1 0 1 1 1 1 -1 1 1 0 1 1 1 1 -1 -1 1 1 1 -1 1 -1 -1 -1 0 0 1 -1 1 1 -1 0 0 0 1 1 1 1 1 1 1 -1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -1 1 -1 1 -1 1 -1 1 -1 1 1 0 -1 1 1 1 1 1 1 1 1 1 1 1 -1 1 1 1 1 1 1 1 0 1 -1 ...

output:

769505 539009

result:

ok single line: '769505 539009'

Test #18:

score: 0
Accepted
time: 89ms
memory: 11368kb

input:

1
1000000
1 0 0 0 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 0 -1 -1 0 1 0 0 0 0 0 0 -1 -1 -1 -1 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 -1 0 -1 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 1 1 0 0 1 0 -1 0 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 -1 -1 1 0 0 0 0 0 0 -1 0 ...

output:

500002 3

result:

ok single line: '500002 3'

Test #19:

score: 0
Accepted
time: 66ms
memory: 3712kb

input:

95013
14
0 0 -1 0 -1 0 0 0 -1 0 -1 0 0 -1
17
0 0 0 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0
13
0 0 0 0 0 0 -1 0 0 0 -1 0 -1
6
0 -1 0 0 0 0
20
0 0 0 -1 0 -1 0 0 0 -1 -1 0 -1 -1 0 -1 -1 -1 -1 0
17
-1 0 0 0 0 0 -1 0 0 0 -1 -1 0 0 0 -1 0
2
0 0
9
0 0 -1 0 -1 0 0 0 0
18
0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0
7
0 0 0...

output:

8 1
5 1
4 1
4 1
-1
-1
2 1
3 1
10 1
5 2
2 1
9 1
-1
4 1
2 1
3 1
-1
5 1
-1
-1
3 1
9 2
-1
4 1
-1
1 1
5 1
9 1
-1
-1
6 1
-1
7 1
8 1
-1
-1
9 2
9 1
5 2
-1
7 2
-1
-1
-1
-1
2 1
2 1
5 1
-1
4 1
-1
7 1
-1
-1
11 2
-1
-1
1 1
7 1
-1
-1
5 1
-1
9 2
4 1
7 2
4 1
11 1
-1
10 1
3 2
2 1
-1
7 1
-1
-1
-1
-1
3 1
3 2
3 1
10 1
...

result:

ok 95013 lines

Test #20:

score: 0
Accepted
time: 53ms
memory: 3584kb

input:

95166
13
1 -1 1 1 1 1 1 1 1 1 1 1 1
15
1 1 -1 -1 1 1 -1 1 1 1 -1 1 -1 1 1
3
1 1 -1
9
1 -1 1 1 1 -1 1 1 1
14
-1 -1 -1 1 -1 1 1 1 -1 1 -1 1 -1 1
2
1 1
7
1 -1 -1 -1 1 -1 1
6
1 1 -1 1 -1 -1
6
1 -1 -1 1 1 -1
11
-1 1 1 1 -1 1 -1 1 1 -1 1
10
1 1 1 1 -1 1 1 1 1 1
3
-1 1 -1
4
1 -1 1 1
13
1 1 1 1 1 -1 1 -1 1 ...

output:

13 12
11 6
3 2
4 3
-1
1 1
-1
4 1
-1
-1
10 9
-1
4 3
11 8
1 1
-1
-1
-1
-1
-1
-1
-1
11 10
-1
6 5
-1
2 1
1 1
1 1
6 5
3 2
7 6
-1
13 7
1 1
11 7
-1
-1
-1
-1
4 3
-1
-1
-1
10 7
5 3
2 1
14 9
14 9
-1
4 3
-1
-1
3 2
13 10
11 9
-1
-1
3 2
13 8
2 1
1 1
3 2
2 1
-1
11 5
-1
5 2
1 1
17 13
6 5
11 6
13 9
-1
5 4
-1
-1
1 1...

result:

ok 95166 lines

Test #21:

score: 0
Accepted
time: 81ms
memory: 3712kb

input:

94880
2
1 0
16
0 1 1 1 0 0 0 1 1 1 0 0 1 1 0 1
6
1 1 0 1 1 1
4
0 0 1 1
19
1 0 0 1 0 0 0 0 1 1 0 0 1 1 0 1 0 0 0
8
0 0 0 0 0 1 0 1
8
0 1 0 1 0 0 0 1
10
1 1 0 1 0 1 0 0 1 1
11
0 0 1 1 1 0 1 1 0 1 0
12
0 1 1 1 0 0 1 1 0 0 0 0
4
0 1 1 0
9
1 0 1 0 0 1 0 0 1
17
0 0 1 0 0 0 1 0 1 1 1 0 0 1 0 0 1
20
0 0 1 1...

output:

2 1
11 5
6 5
4 3
11 2
2 1
2 1
7 3
2 1
7 1
4 3
3 1
5 1
4 1
11 2
9 1
13 6
2 1
5 1
7 2
11 2
9 4
9 1
2 1
9 5
3 1
8 1
5 3
4 1
3 1
4 3
5 2
2 1
2 1
5 1
6 5
1 1
7 5
8 7
15 14
4 1
7 1
3 2
10 9
13 6
1 1
3 1
8 5
1 1
11 4
7 2
5 2
3 2
5 3
4 1
1 1
1 1
7 1
1 1
2 1
4 3
2 1
2 1
2 1
11 6
5 3
7 1
4 3
8 5
9 4
14 9
4 3
...

result:

ok 94880 lines

Test #22:

score: 0
Accepted
time: 54ms
memory: 3584kb

input:

94941
6
0 0 0 0 0 0
4
0 0 0 0
19
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
5
0 0 0 0 0
3
0 0 0
6
0 0 0 0 0 0
10
0 0 0 0 0 0 0 0 0 0
14
0 0 0 0 0 0 0 0 0 0 0 0 0 0
16
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
3
0 0 0
1
0
6
0 0 0 0 0 0
8
0 0 0 0 0 0 0 0
10
0 0 0 0 0 0 0 0 0 0
5
0 0 0 0 0
2
0 0
18
0 0 0 0 0 0 0 0 0 ...

output:

4 1
3 1
11 2
2 1
3 2
4 1
6 1
8 1
9 1
3 2
1 1
4 1
5 1
6 1
2 1
2 1
10 1
11 2
5 1
2 1
4 1
2 1
4 1
5 1
2 1
11 2
11 1
9 2
6 1
11 2
5 2
2 1
11 2
4 1
5 2
10 1
11 1
10 1
4 1
4 1
11 1
9 2
4 1
1 1
6 1
3 1
2 1
6 1
3 1
7 1
11 1
11 2
2 1
5 1
3 1
3 1
5 1
6 1
9 1
7 1
3 1
2 1
1 1
3 1
1 1
2 1
11 2
1 1
11 1
4 1
9 1
3...

result:

ok 94941 lines

Test #23:

score: 0
Accepted
time: 48ms
memory: 3712kb

input:

95248
5
1 1 1 1 1
1
1
6
1 1 1 1 1 1
15
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
13
1 1 1 1 1 1 1 1 1 1 1 1 1
2
1 1
3
1 1 1
11
1 1 1 1 1 1 1 1 1 1 1
4
1 1 1 1
11
1 1 1 1 1 1 1 1 1 1 1
10
1 1 1 1 1 1 1 1 1 1
13
1 1 1 1 1 1 1 1 1 1 1 1 1
7
1 1 1 1 1 1 1
2
1 1
20
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
20
1 1 1 1 ...

output:

1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
...

result:

ok 95248 lines

Test #24:

score: 0
Accepted
time: 109ms
memory: 11360kb

input:

1
1000000
0 0 0 0 0 0 0 0 0 0 0 0 -1 0 -1 0 0 0 -1 0 0 0 0 0 -1 0 0 0 -1 -1 0 -1 -1 0 -1 -1 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 0 0 -1 -1 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 0 0 0 -1 -1 0 0 0 -1 -1 0 -1 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 -1 0 -1 0 0 0 0 0 0 -1 0 ...

output:

500001 1

result:

ok single line: '500001 1'

Test #25:

score: 0
Accepted
time: 44ms
memory: 11144kb

input:

1
1000000
1 -1 1 1 -1 1 1 -1 -1 1 1 1 1 1 1 1 1 1 -1 -1 1 1 -1 1 1 1 -1 -1 -1 1 1 1 -1 1 1 -1 1 1 1 -1 -1 -1 -1 -1 1 1 1 1 1 -1 1 1 1 1 -1 -1 1 1 1 1 -1 1 1 1 1 -1 1 1 1 1 1 1 1 1 1 -1 1 1 1 1 -1 1 1 1 1 1 1 1 1 1 1 -1 1 -1 1 1 1 -1 1 1 -1 -1 -1 1 1 -1 1 1 1 1 1 -1 1 1 1 1 1 1 -1 -1 -1 -1 -1 1 1 1 -...

output:

667168 334335

result:

ok single line: '667168 334335'

Test #26:

score: 0
Accepted
time: 117ms
memory: 11360kb

input:

1
1000000
1 1 0 0 0 0 1 0 0 1 0 1 1 1 1 1 0 0 0 0 1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 1 1 0 0 1 0 1 1 1 1 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 1 0 0 1 1 1 1 1 0 1 1 1 0 0 0 1 1 1 1 1 1 0 0 0 0 1 1 1 0 1 0 0 1 0 1 0 0 1 1 0 1 0 1 1 0 1 0 0 0 1 0 1 1 0 1 0 0 1 1 1 0 1 1 0 0 0 1 1 1 1 0 1 0 0 1 1 0 0 0 0 0 1 0 1 1 ...

output:

500603 1205

result:

ok single line: '500603 1205'

Test #27:

score: 0
Accepted
time: 44ms
memory: 11236kb

input:

1
1000000
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...

output:

500001 1

result:

ok single line: '500001 1'

Test #28:

score: 0
Accepted
time: 38ms
memory: 11364kb

input:

1
1000000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

output:

1 1

result:

ok single line: '1 1'