結果
問題 | No.896 友達以上恋人未満 |
ユーザー | kmjp |
提出日時 | 2019-09-28 00:21:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,857 ms / 3,500 ms |
コード長 | 1,465 bytes |
コンパイル時間 | 1,709 ms |
コンパイル使用メモリ | 168,608 KB |
実行使用メモリ | 81,664 KB |
最終ジャッジ日時 | 2024-09-25 03:26:06 |
合計ジャッジ時間 | 9,527 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 763 ms
36,100 KB |
testcase_06 | AC | 1,598 ms
36,208 KB |
testcase_07 | AC | 767 ms
36,200 KB |
testcase_08 | AC | 782 ms
36,224 KB |
testcase_09 | AC | 1,349 ms
68,864 KB |
testcase_10 | AC | 1,857 ms
81,664 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- int M,N; ll MX,AX,MY,AY,mo; int X[1010],Y[1010],A[1010],B[1010]; ll Z[1<<24]; void solve() { int i,j,k,l,r,x,y; string s; cin>>M>>N>>MX>>AX>>MY>>AY>>mo; FOR(i,M) cin>>X[i]; FOR(i,M) cin>>Y[i]; FOR(i,M) cin>>A[i]; FOR(i,M) cin>>B[i]; ll px=X[M-1],py=Y[M-1]; FOR(i,N) { if(i<M) { Z[X[i]]+=Y[i]; } else { px=(px*MX+AX)%mo; py=(py*MY+AY)%mo; Z[px]+=py; } } for(i=1;i<mo;i++) { for(j=i*2;j<mo;j+=i) Z[i]+=Z[j]; } ll pa=A[M-1],pb=B[M-1],xo=0; FOR(i,N) { ll ret=0; if(i<M) { if(A[i]<mo) { ret+=Z[A[i]]; if(A[i]*B[i]<mo) ret-=Z[A[i]*B[i]]; } cout<<ret<<endl; } else { pa=(pa*MX+AX+mo-1)%mo+1; pb=(pb*MY+AY+mo-1)%mo+1; if(pa<mo) { ret+=Z[pa]; if(pa*pb<mo) ret-=Z[pa*pb]; } } xo^=ret; } cout<<xo<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }