結果
問題 |
No.3062 Rotate and Maximize
|
ユーザー |
![]() |
提出日時 | 2025-03-20 23:57:29 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,509 bytes |
コンパイル時間 | 2,275 ms |
コンパイル使用メモリ | 196,372 KB |
実行使用メモリ | 7,328 KB |
最終ジャッジ日時 | 2025-03-20 23:57:36 |
合計ジャッジ時間 | 6,047 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | AC * 3 WA * 48 |
ソースコード
#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;} //------------------------------------------------------- int N; int A[3030]; int C[3030]; int B[3030]; const ll mo=998244353; void solve() { int i,j,k,l,r,x,y; string s; cin>>N; x=-1; FOR(i,N) { cin>>A[i]; A[i]--; if(A[i]==N-1) x=i; } if(x==-1) { cout<<0<<endl; return; } rotate(A,A+x,A+N); FOR(i,N) B[i]=N; FOR(i,N) { FOR(j,N) if(A[j]==N-1) { B[i]=min(B[i],A[(i+j)%N]); } } FOR(i,N) cout<<B[i]; cout<<endl; ll ret=N; for(i=N-2;i>=0;i--) { int cand=0; ZERO(C); FOR(j,N) if(A[j]==i) { cand++; FOR(k,N) if(A[k]==N-1) C[(j-k+N)%N]++; } if(cand) { x=0; FOR(j,N) if(C[j]==cand&&B[j]>=i) x++; ret=ret*x%mo; } else { FOR(j,N) if(B[j]>=i) cand++; ret=ret*(cand-(N-1-i))%mo; } } cout<<ret<<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; }