結果
問題 | No.2968 Final MIGISITA Strike |
ユーザー | kmjp |
提出日時 | 2024-11-21 00:50:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,249 bytes |
コンパイル時間 | 2,640 ms |
コンパイル使用メモリ | 215,792 KB |
実行使用メモリ | 35,528 KB |
最終ジャッジ日時 | 2024-11-21 00:50:17 |
合計ジャッジ時間 | 13,268 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 48 ms
9,856 KB |
testcase_31 | AC | 44 ms
9,216 KB |
testcase_32 | AC | 56 ms
10,880 KB |
testcase_33 | AC | 45 ms
9,216 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | AC | 2 ms
5,248 KB |
testcase_65 | AC | 68 ms
15,808 KB |
testcase_66 | AC | 79 ms
16,604 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #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 FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- ll H,W,N,M; ll S,C,SX,SY; ll X[505050],Y[505050],A[505050]; const ll mo=998244353; template<class V> V ext_gcd(V p,V q,V& x, V& y) { // get px+qy=gcd(p,q) if(q==0) return x=1,y=0,p; V g=ext_gcd(q,p%q,y,x); y-=p/q*x; return g; } template<class V> pair<V,V> crt(V a1,V mo1,V a2,V mo2) { // return (x,y) y=lcm(a1,a2),x%mo1=a1,x%mo2=a2 V g,x,y,z; g=ext_gcd(mo1,mo2,x,y); a1=(a1%mo1+mo1)%mo1;a2=(a2%mo2+mo2)%mo2; if(a1%g != a2%g) return pair<V,V>(-1,0); // N/A V lcm=mo1*(mo2/g); if(lcm<mo1) return pair<V,V>(-2,0); // overflow V v=a1+((a2-a1)%lcm+lcm)*x%lcm*(mo1/g); return make_pair(((v%lcm)+lcm) % lcm,lcm); } vector<vector<ll>> V; ll na=0,nb=0,cur=0,mi=0; void out(ll add) { SX+=add; SY+=add; SX%=2*W; SY%=2*H; if(SX>=W) SX=2*W-SX; if(SY>=H) SY=2*H-SY; cout<<SX<<" "<<(H-SY)<<" "<<na%mo<<" "<<nb%mo<<endl; exit(0); } void solve() { int i,j,k,l,r,x,y; string s; cin>>W>>H>>N>>M>>S>>C>>SX>>SY; SY=H-SY; FOR(i,N) { cin>>X[i]>>Y[i]>>A[i]; Y[i]=H-Y[i]; A[i+1*N]=A[i]; A[i+2*N]=A[i]; A[i+3*N]=A[i]; X[i+1*N]=X[i]; Y[i+1*N]=2*H-Y[i]; X[i+2*N]=2*W-X[i]; Y[i+2*N]=2*H-Y[i]; X[i+3*N]=2*W-X[i]; Y[i+3*N]=Y[i]; } N*=4; FOR(i,M) { cin>>X[N+i]>>Y[N+i]>>A[N+i]; Y[N+i]=H-Y[N+i]; A[N+i]=-A[N+i]; A[N+i+1*M]=A[N+i]; A[N+i+2*M]=A[N+i]; A[N+i+3*M]=A[N+i]; X[N+i+1*M]=X[N+i]; Y[N+i+1*M]=2*H-Y[N+i]; X[N+i+2*M]=2*W-X[N+i]; Y[N+i+2*M]=2*H-Y[N+i]; X[N+i+3*M]=2*W-X[N+i]; Y[N+i+3*M]=Y[N+i]; } M*=4; ll a=2*H*W/__gcd(H,W); V.push_back({0,0,0}); V.push_back({a,0,a/H+a/W}); FOR(i,N+M) { if(X[i]<SX) X[i]+=2*W; if(Y[i]<SY) Y[i]+=2*H; auto p=crt(X[i]-SX,2*W,Y[i]-SY,2*H); if(p.first>0) { V.push_back({p.first,A[i],(p.first+SX)/W+(p.first+SY)/H,i}); } } sort(ALL(V)); FOR(i,V.size()) if(i) { if(V[i][1]>0) na++; if(V[i][1]<0) nb++; cur-=C*(V[i][2]-V[i-1][2]); mi=min(mi,cur); cur+=V[i][1]; mi=min(mi,cur); } if(S+mi>0&&cur>=0) { cout<<-1<<endl; return; } cur=-cur; ll step=(S+mi+cur-1)/cur; if(cur<=0) step=0; S-=cur*step; na=step%mo*na%mo; nb=step%mo*nb%mo; FOR(i,V.size()) if(i) { if(C*(V[i][2]-V[i-1][2])>=S) { ll step=(S+C-1)/C+V[i-1][2]; ll add=0; for(j=32;j>=0;j--) { ll ax=SX+add+(1LL<<j); ll ay=SY+add+(1LL<<j); if(ax/W+ay/H<step) add+=(1LL<<j); } add++; out(add); } S-=C*(V[i][2]-V[i-1][2]); if(V[i][1]>0) na++; if(V[i][1]<0) nb++; S+=V[i][1]; if(S<=0) { out(V[i][0]); } } } 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; }