結果

問題 No.9 モンスターのレベル上げ
ユーザー asdasd
提出日時 2015-06-14 16:42:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 2,129 bytes
コンパイル時間 1,317 ms
コンパイル使用メモリ 146,848 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-06 03:50:02
合計ジャッジ時間 3,139 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 136 ms
4,376 KB
testcase_03 AC 64 ms
4,380 KB
testcase_04 AC 52 ms
4,380 KB
testcase_05 AC 36 ms
4,380 KB
testcase_06 AC 12 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 13 ms
4,376 KB
testcase_09 AC 119 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 139 ms
4,376 KB
testcase_12 AC 82 ms
4,380 KB
testcase_13 AC 9 ms
4,380 KB
testcase_14 AC 118 ms
4,376 KB
testcase_15 AC 125 ms
4,380 KB
testcase_16 AC 3 ms
4,380 KB
testcase_17 AC 81 ms
4,380 KB
testcase_18 AC 65 ms
4,376 KB
testcase_19 AC 3 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define REP(i,a,b) for(i=a;i<b;i++)
#define rep(i,n) REP(i,0,n)

#define mygc(c) (c)=getchar_unlocked()
#define mypc(c) putchar_unlocked(c)

void reader(int *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);}
void writer(int x, char c){int s=0,m=0;char f[10];if(x<0)m=1,x=-x;while(x)f[s++]=x%10,x/=10;if(!s)f[s++]=0;if(m)mypc('-');while(s--)mypc(f[s]+'0');mypc(c);}

template <class T>
struct heapEx {
  int *hp, *place, size; T *val;

  void malloc(int N){hp=(int*)std::malloc(N*sizeof(int));place=(int*)std::malloc(N*sizeof(int));val=(T*)std::malloc(N*sizeof(T));}
  void free(){free(hp);free(place);free(val);}
  void* malloc(int N, void *workMemory){hp=(int*)workMemory;workMemory=(void*)(hp+N);place=(int*)workMemory;workMemory=(void*)(place+N);val=(T*)workMemory;workMemory=(void*)(val+N);return workMemory;}
  void init(int N){int i;size=0;rep(i,N)place[i]=-1;}
  void up(int n){int m;while(n){m=(n-1)/2;if(val[hp[m]]<=val[hp[n]])break;swap(hp[m],hp[n]);swap(place[hp[m]],place[hp[n]]);n=m;}}
  void down(int n){int m;for(;;){m=2*n+1;if(m>=size)break;if(m+1<size&&val[hp[m]]>val[hp[m+1]])m++;if(val[hp[m]]>=val[hp[n]])break;swap(hp[m],hp[n]);swap(place[hp[m]],place[hp[n]]);n=m;}}
  void change(int n, T v){T f=val[n];val[n]=v;if(place[n]==-1){place[n] = size;hp[size++] = n;up(place[n]);}else{if(f < v) down(place[n]); else if(f > v) up(place[n]);}}
  int pop(void){int res=hp[0];place[res]=-1;size--;if(size)hp[0]=hp[size],place[hp[0]]=0,down(0);return res;}
};

int N;
int A[2222], B[2222];

int main(){
  int i, j, k, st;
  heapEx<int> hp;
  int res = 1000000000, tmp;

  reader(&N);
  rep(i,N) reader(A+i);
  rep(i,N) reader(B+i);

  hp.malloc(N);
  rep(st,N){
    hp.init(N);
    rep(i,N) hp.change(i,A[i]*2000);
    tmp = 0;
    rep(i,N){
      k = hp.hp[0];
      hp.change(k, hp.val[k] + (B[(st+i)%N]/2)*2000+1);
      tmp = max(tmp, hp.val[k] % 2000);
      if(tmp >= res) break;
    }
    res = min(res, tmp);
  }

  writer(res,'\n');

  return 0;
}
0