QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#586155 | #5420. Inscryption | N_z_ | AC ✓ | 44ms | 11208kb | C++14 | 6.4kb | 2024-09-24 07:44:50 | 2024-09-24 07:44:51 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
struct time_helper
{
#ifdef LOCAL
clock_t time_last;
#endif
time_helper()
{
#ifdef LOCAL
time_last=clock();
#endif
}
void test()
{
#ifdef LOCAL
auto time_now=clock();
std::cerr<<"time:"<<1.*(time_now-time_last)/CLOCKS_PER_SEC<<";all_time:"<<1.*time_now/CLOCKS_PER_SEC<<std::endl;
time_last=time_now;
#endif
}
~time_helper()
{
test();
}
}time_helper;
#ifdef LOCAL
#include"dbg.h"
#else
#define dbg(...) (__VA_ARGS__)
#endif
namespace Fread{const int SIZE=1<<16;char buf[SIZE],*S,*T;inline char getchar(){if(S==T){T=(S=buf)+fread(buf,1,SIZE,stdin);if(S==T)return'\n';}return *S++;}}namespace Fwrite{const int SIZE=1<<16;char buf[SIZE],*S=buf,*T=buf+SIZE;inline void flush(){fwrite(buf,1,S-buf,stdout);S=buf;}inline void putchar(char c){*S++=c;if(S==T)flush();}struct NTR{~NTR(){flush();}}ztr;}
#define getchar Fread::getchar
#define putchar Fwrite::putchar
int print_precision=10;bool print_T_endl=1;char print_between=' ';
template<typename T>struct is_char{static constexpr bool value=(std::is_same<T,char>::value||std::is_same<T,signed char>::value||std::is_same<T,unsigned char>::value);};template<typename T>struct is_integral_ex{static constexpr bool value=(std::is_integral<T>::value||std::is_same<T,__int128>::value)&&!is_char<T>::value;};template<typename T>struct is_floating_point_ex{static constexpr bool value=std::is_floating_point<T>::value||std::is_same<T,__float128>::value;};namespace Fastio{struct Reader;struct Writer;template<size_t id>struct read_tuple{template<typename...T>static void read(Reader&stream,std::tuple<T...>&x){read_tuple<id-1>::read(stream,x);stream>>get<id>(x);}};template<>struct read_tuple<0>{template<typename...T>static void read(Reader&stream,std::tuple<T...>&x){stream>>get<0>(x);}};template<size_t id>struct print_tuple{template<typename...T>static void print(Writer&stream,const std::tuple<T...>&x){print_tuple<id-1>::print(stream,x);putchar(print_between);stream<<get<id>(x);}};template<>struct print_tuple<0>{template<typename...T>static void print(Writer&stream,const std::tuple<T...>&x){stream<<get<0>(x);}};struct Reader{template<typename T>typename std::enable_if_t<std::is_class<T>::value,Reader&>operator>>(T&x){for(auto &y:x)*this>>y;return *this;}template<typename...T>Reader&operator>>(std::tuple<T...>&x){read_tuple<sizeof...(T)-1>::read(*this,x);return *this;}template<typename T>typename std::enable_if_t<is_integral_ex<T>::value,Reader&>operator>>(T&x){char c=getchar();short f=1;while(c<'0'||c>'9'){if(c=='-')f*=-1;c=getchar();}x=0;while(c>='0'&&c<='9'){x=(x<<1)+(x<<3)+(c^48);c=getchar();}x*=f;return *this;}template<typename T>typename std::enable_if_t<is_floating_point_ex<T>::value,Reader&>operator>>(T&x){char c=getchar();short f=1,s=0;x=0;T t=0;while((c<'0'||c>'9')&&c!='.'){if(c=='-')f*=-1;c=getchar();}while(c>='0'&&c<='9'&&c!='.')x=x*10+(c^48),c=getchar();if(c=='.')c=getchar();else return x*=f,*this;while(c>='0'&&c<='9')t=t*10+(c^48),s++,c=getchar();while(s--)t/=10.0;x=(x+t)*f;return*this;}template<typename T>typename std::enable_if_t<is_char<T>::value,Reader&>operator>>(T&c){c=getchar();while(c=='\n'||c==' '||c=='\r')c=getchar();return *this;}Reader&operator>>(char*str){int len=0;char c=getchar();while(c=='\n'||c==' '||c=='\r')c=getchar();while(c!='\n'&&c!=' '&&c!='\r')str[len++]=c,c=getchar();str[len]='\0';return*this;}template<typename T1,typename T2>Reader&operator>>(std::pair<T1,T2>&x){*this>>x.first>>x.second;return *this;}Reader&operator>>(std::string&str){str.clear();char c=getchar();while(c=='\n'||c==' '||c=='\r')c=getchar();while(c!='\n'&&c!=' '&&c!='\r')str.push_back(c),c=getchar();return*this;}Reader(){}}cin;const char endl='\n';struct Writer{typedef __int128 mxdouble;template<typename T>typename std::enable_if_t<std::is_class<T>::value,Writer&>operator<<(const T&x){for(auto q:x){*this<<q;if(!is_class<decltype(q)>::value)*this<<print_between;}if(!is_class<typename T::value_type>::value&&print_T_endl)*this<<'\n';return *this;}template<typename...T>Writer&operator<<(const std::tuple<T...>&x){print_tuple<sizeof...(T)-1>::print(*this,x);return *this;}template<typename T>typename std::enable_if_t<is_integral_ex<T>::value,Writer&>operator<<(T x){if(x==0)return putchar('0'),*this;if(x<0)putchar('-'),x=-x;static int sta[45];int top=0;while(x)sta[++top]=x%10,x/=10;while(top)putchar(sta[top]+'0'),--top;return*this;}template<typename T>typename std::enable_if_t<is_floating_point_ex<T>::value,Writer&>operator<<(T x){if(x<0)putchar('-'),x=-x;x+=pow(10,-print_precision)/2;mxdouble _=x;x-=(T)_;static int sta[45];int top=0;while(_)sta[++top]=_%10,_/=10;if(!top)putchar('0');while(top)putchar(sta[top]+'0'),--top;putchar('.');for(int i=0;i<print_precision;i++)x*=10;_=x;while(_)sta[++top]=_%10,_/=10;for(int i=0;i<print_precision-top;i++)putchar('0');while(top)putchar(sta[top]+'0'),--top;return*this;}template<typename T>typename std::enable_if_t<is_char<T>::value,Writer&>operator<<(const T&c){putchar(c);return*this;}Writer&operator<<(char*str){int cur=0;while(str[cur])putchar(str[cur++]);return *this;}Writer&operator<<(const char*str){int cur=0;while(str[cur])putchar(str[cur++]);return*this;}template<typename T1,typename T2>Writer&operator<<(const std::pair<T1,T2>&x){*this<<x.first<<print_between<<x.second;return *this;}Writer&operator<<(const std::string&str){int st=0,ed=str.size();while(st<ed)putchar(str[st++]);return*this;}Writer(){}}cout;}
#define cin Fastio::cin
#define cout Fastio::cout
#define endl Fastio::endl
template<class Fun>class y_combinator_result{Fun fun_;public:template<class T>explicit y_combinator_result(T &&fun): fun_(std::forward<T>(fun)) {}template<class ...Args>decltype(auto) operator()(Args &&...args){return fun_(std::ref(*this), std::forward<Args>(args)...);}};template<class Fun>decltype(auto) y_combinator(Fun &&fun){return y_combinator_result<std::decay_t<Fun>>(std::forward<Fun>(fun));}
void init();void solve(int tc);
main()
{
init();int t=1;
cin>>t;
for(int tc=1;tc<=t;tc++)solve(tc);
}
void init()
{
}
void solve(int tc)
{
int n;
cin>>n;
vector<int>a(n+1),b(n+1);
b[0]=1;
int ans=0;
for(int x=1;x<=n;x++)
cin>>a[x],b[x]=b[x-1]+(a[x]==-1?-1:1),ans=b[x]<=0?-1:ans;
if(ans==-1){cout<<-1<<endl;return;}
int nmin=1e9;
int sum=1,sc=1;
for(int x=n;x>=1;x--)
{
nmin=min(nmin,b[x]);
if(a[x]==0)
if(nmin>2)nmin-=2,a[x]=-1;
else a[x]=1;
if(a[x]==-1)sc--;
else sum++,sc++;
}
int _=__gcd(sum,sc);
cout<<sum/_<<' '<<sc/_<<endl;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3576kb
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: 44ms
memory: 3716kb
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: 20ms
memory: 3632kb
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: 12ms
memory: 3940kb
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: 10ms
memory: 3712kb
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: 11ms
memory: 3716kb
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: 11ms
memory: 3848kb
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: 6ms
memory: 11208kb
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: 13ms
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: 13ms
memory: 3700kb
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: 16ms
memory: 3932kb
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: 13ms
memory: 3632kb
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: 14ms
memory: 3640kb
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: 4ms
memory: 11184kb
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: 10ms
memory: 10900kb
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: 7ms
memory: 11108kb
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: 6ms
memory: 10812kb
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: 11ms
memory: 11092kb
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: 11ms
memory: 3700kb
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: 14ms
memory: 3632kb
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: 16ms
memory: 3936kb
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: 10ms
memory: 3920kb
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: 10ms
memory: 3700kb
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: 14ms
memory: 10812kb
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: 11ms
memory: 10872kb
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: 7ms
memory: 11144kb
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: 7ms
memory: 11136kb
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: 3ms
memory: 10876kb
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'