結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | shisyamokongari |
提出日時 | 2016-08-25 03:06:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,040 bytes |
コンパイル時間 | 583 ms |
コンパイル使用メモリ | 60,228 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-08 02:15:56 |
合計ジャッジ時間 | 18,826 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 3,142 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include<iostream> #include<algorithm> using namespace std; #define NMAX 1500 typedef struct s{ long long A,cnt; } S; bool operator<(S a,S b){ return a.A<b.A||(a.A==b.A&&a.cnt<b.cnt); } int main(){ long long N; S A[NMAX]; long long B[NMAX]; long long ansx,ansn; cin>>N; for(long long i=0;i<N;i++) cin>>A[i].A; for(long long i=0;i<N;i++) cin>>B[i]; ansx=-1; ansn=N+1; for(long long i=0;i<N;i++){ for(long long j=0;j<N;j++) A[j].cnt=0; long long j=i; bool f=false; long long t=0; sort(A,A+N); while(j!=i||!f){ f=true; A[0].A+=B[j]; A[0].cnt++; j++; t++; if(N==j) j=0; S tmp=A[0]; for(long long k=1;;k++){ if(k==N||A[k].A>tmp.A||(A[k].A==tmp.A&&A[k].cnt>tmp.cnt)){ A[k-1]=tmp; break; } A[k-1]=A[k]; } } long long maxf=-1; long long minf=N+1; for(long long k=0;k<N;k++){ if(A[k].cnt>maxf) maxf=A[k].cnt; if(A[k].cnt<minf) minf=A[k].cnt; } if(ansn>minf) ansn=minf,ansx=maxf; else if(ansn==minf&&ansx<maxf) ansx=maxf; } cout<<ansx<<endl; }