QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#747171 | #9294. Integer Perimeter | N_z_ | AC ✓ | 0ms | 3696kb | C++23 | 6.3kb | 2024-11-14 16:30:25 | 2024-11-14 16:30:25 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
struct time_helper{
#ifdef LOCAL
clock_t time_last;time_helper(){time_last=clock();}void test(){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;}~time_helper(){test();}
#else
void test(){}
#endif
}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-1>(x);}};template<>struct read_tuple<0>{template<typename...T>static void read([[maybe_unused]]Reader&stream,[[maybe_unused]]std::tuple<T...>&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-1>(x);}};template<>struct print_tuple<1>{template<typename...T>static void print(Writer&stream,const std::tuple<T...>&x){stream<<get<0>(x);}};template<>struct print_tuple<0>{template<typename...T>static void print([[maybe_unused]]Writer&stream,[[maybe_unused]]const std::tuple<T...>&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)>::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)>::print(*this,x);if(print_T_endl)*this<<'\n';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;if(print_T_endl)*this<<'\n';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([[maybe_unused]]int tc)
{
int a,b,c,d,e,f;
cin>>a>>b>>c>>d>>e>>f;
if(a*c*e!=b*d*f||a*c+b*c<=b*d||a*c+b*d<=b*c||b*c+b*d<=a*c)cout<<-1<<endl;
else cout<<1<<endl;
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3612kb
input:
1 1 2 2 3 3
output:
1
result:
ok answer is '1'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3500kb
input:
1 2 3 4 5 6
output:
-1
result:
ok answer is '-1'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3692kb
input:
1 2 2 3 3 1
output:
-1
result:
ok answer is '-1'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3692kb
input:
1000 1000 1000 1000 1000 1000
output:
1
result:
ok answer is '1'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3672kb
input:
1000 999 999 998 499 500
output:
1
result:
ok answer is '1'
Test #6:
score: 0
Accepted
time: 0ms
memory: 3500kb
input:
1000 1 1 999 999 1000
output:
-1
result:
ok answer is '-1'
Test #7:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
8 15 15 82 82 8
output:
-1
result:
ok answer is '-1'
Test #8:
score: 0
Accepted
time: 0ms
memory: 3692kb
input:
772 445 445 943 943 772
output:
1
result:
ok answer is '1'
Test #9:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
325 775 202 497 629 447
output:
-1
result:
ok answer is '-1'
Test #10:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
922 60 60 990 990 922
output:
-1
result:
ok answer is '-1'
Test #11:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
932 156 156 974 974 932
output:
1
result:
ok answer is '1'
Test #12:
score: 0
Accepted
time: 0ms
memory: 3688kb
input:
211 918 739 857 537 728
output:
-1
result:
ok answer is '-1'
Test #13:
score: 0
Accepted
time: 0ms
memory: 3620kb
input:
773 40 40 980 980 773
output:
-1
result:
ok answer is '-1'
Test #14:
score: 0
Accepted
time: 0ms
memory: 3612kb
input:
868 568 568 951 951 868
output:
1
result:
ok answer is '1'
Test #15:
score: 0
Accepted
time: 0ms
memory: 3604kb
input:
310 991 449 593 263 940
output:
-1
result:
ok answer is '-1'
Test #16:
score: 0
Accepted
time: 0ms
memory: 3500kb
input:
495 108 108 685 685 495
output:
-1
result:
ok answer is '-1'
Test #17:
score: 0
Accepted
time: 0ms
memory: 3540kb
input:
757 580 580 854 854 757
output:
1
result:
ok answer is '1'
Test #18:
score: 0
Accepted
time: 0ms
memory: 3612kb
input:
80 221 355 676 328 934
output:
-1
result:
ok answer is '-1'
Test #19:
score: 0
Accepted
time: 0ms
memory: 3500kb
input:
988 5 5 999 999 988
output:
-1
result:
ok answer is '-1'
Test #20:
score: 0
Accepted
time: 0ms
memory: 3688kb
input:
467 67 67 530 530 467
output:
1
result:
ok answer is '1'
Test #21:
score: 0
Accepted
time: 0ms
memory: 3544kb
input:
980 965 34 835 504 691
output:
-1
result:
ok answer is '-1'
Test #22:
score: 0
Accepted
time: 0ms
memory: 3604kb
input:
882 115 115 997 997 882
output:
-1
result:
ok answer is '-1'
Test #23:
score: 0
Accepted
time: 0ms
memory: 3540kb
input:
325 152 152 335 335 325
output:
1
result:
ok answer is '1'
Test #24:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
399 489 22 896 153 302
output:
-1
result:
ok answer is '-1'
Test #25:
score: 0
Accepted
time: 0ms
memory: 3668kb
input:
340 406 406 897 897 340
output:
-1
result:
ok answer is '-1'
Test #26:
score: 0
Accepted
time: 0ms
memory: 3692kb
input:
968 502 502 970 970 968
output:
1
result:
ok answer is '1'
Test #27:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
328 694 10 84 792 475
output:
-1
result:
ok answer is '-1'
Test #28:
score: 0
Accepted
time: 0ms
memory: 3696kb
input:
919 8 8 929 929 919
output:
-1
result:
ok answer is '-1'
Test #29:
score: 0
Accepted
time: 0ms
memory: 3536kb
input:
643 480 480 819 819 643
output:
1
result:
ok answer is '1'
Test #30:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
925 607 197 420 492 951
output:
-1
result:
ok answer is '-1'
Test #31:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
352 141 141 666 666 352
output:
-1
result:
ok answer is '-1'
Test #32:
score: 0
Accepted
time: 0ms
memory: 3688kb
input:
986 200 200 999 999 986
output:
1
result:
ok answer is '1'
Test #33:
score: 0
Accepted
time: 0ms
memory: 3488kb
input:
559 858 881 806 620 483
output:
-1
result:
ok answer is '-1'
Test #34:
score: 0
Accepted
time: 0ms
memory: 3540kb
input:
564 6 6 763 763 564
output:
-1
result:
ok answer is '-1'
Test #35:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
325 962 962 963 963 325
output:
1
result:
ok answer is '1'
Test #36:
score: 0
Accepted
time: 0ms
memory: 3596kb
input:
595 832 549 327 464 279
output:
-1
result:
ok answer is '-1'
Test #37:
score: 0
Accepted
time: 0ms
memory: 3672kb
input:
282 70 70 366 366 282
output:
-1
result:
ok answer is '-1'
Test #38:
score: 0
Accepted
time: 0ms
memory: 3604kb
input:
992 639 639 995 995 992
output:
1
result:
ok answer is '1'
Test #39:
score: 0
Accepted
time: 0ms
memory: 3544kb
input:
466 600 581 958 989 467
output:
-1
result:
ok answer is '-1'
Test #40:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
519 20 20 801 801 519
output:
-1
result:
ok answer is '-1'
Test #41:
score: 0
Accepted
time: 0ms
memory: 3668kb
input:
770 581 581 793 793 770
output:
1
result:
ok answer is '1'
Test #42:
score: 0
Accepted
time: 0ms
memory: 3544kb
input:
552 898 335 807 628 718
output:
-1
result:
ok answer is '-1'
Test #43:
score: 0
Accepted
time: 0ms
memory: 3620kb
input:
2 3 3 1 1 2
output:
-1
result:
ok answer is '-1'
Extra Test:
score: 0
Extra Test Passed