結果

問題 No.5008 [Cherry Alpha] Discrete Pendulum with Air Resistance
ユーザー butsurizukibutsurizuki
提出日時 2022-10-03 11:45:44
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,364 bytes
コンパイル時間 4,037 ms
実行使用メモリ 6,956 KB
スコア 0
最終ジャッジ日時 2022-10-14 21:28:21
合計ジャッジ時間 93,838 ms
ジャッジサーバーID
(参考情報)
judge8 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
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 TLE -
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 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>

using namespace std;

int getpos(int tim,int b){
  int p=tim/b;
  int q=tim%b;

  int res;
  if(p&1){res=q;}
  else{res=b-q;}

  if(p&2){res*=-1;}

  return res;
}

int n,k;
vector<int> t,u;
int sz;

long long eval(vector<int> &cnt,bool debug){
  // tairitsu
  double t_all=0.0;
  for(auto &nx : t){
    double t_cur=0.0;
    vector<int> xlis(sz+1);
    for(int i=1;i<=sz;i++){
      xlis[i]=getpos(nx,i);
    }
    for(int i=1;i<=sz;i++){
      for(int j=i;j<=sz;j++){
        double del;
        if(i==j){del=(cnt[i]*(cnt[i]-1))/2;}
        else{del=cnt[i]*cnt[j];}
        if(del==0.0){continue;}
        del*=abs(xlis[i]-xlis[j]);
        del/=((double)(i+j));
        t_cur+=del;
      }
    }
    t_cur*=2.0e7;
    t_cur/=((double)(n*(n-1)));
    t_all+=round(t_cur);
    if(debug){cerr << ((int)round(t_cur)) << "\n";}
  }
  t_all/=((double)k);
  if(debug){cerr << "\n";}

  // kyoucyou
  double k_all=0.0;
  for(auto &nx : u){
    double k_cur=0.0;
    vector<int> xlis;
    for(int i=1;i<=sz;i++){
      if(cnt[i]>0){xlis.push_back(getpos(nx,i));}
    }
    sort(xlis.begin(),xlis.end());
    k_cur=xlis.back()-xlis[0];
    k_cur/=20.0;
    k_cur+=1.0;
    k_cur=1.0e7/sqrt(k_cur);
    k_all+=round(k_cur);
    if(debug){cerr << ((int)round(k_cur)) << "\n";}
  }
  k_all/=((double)k);
  if(debug){cerr << "\n";}

  long long rt=(t_all+0.5);
  long long rk=(k_all+0.5);
  if(debug){
    cerr << rt << "\n";
    cerr << rk << "\n";
    cerr << rt*rk << "\n";
  }
  return rt*rk;
}

long long get_rand(long long lim,mt19937_64 &eg){
  return (long long)(eg()%lim);
}

int main(){
  std::random_device seed_gen;
  std::mt19937_64 engine(seed_gen());

  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  cin >> n >> k;
  t.resize(k);
  u.resize(k);
  for(auto &nx : t){cin >> nx;}
  for(auto &nx : u){cin >> nx;}

  sz=11;

  vector<int> res(sz+1);
  for(int i=0;i<n;i++){
    res[1+(i%sz)]++;
  }
  long long maxsc=eval(res,false);

  for(int i=0;i<100000;i++){
    int p=1+get_rand(sz,engine);
    int q=1+get_rand(sz,engine);
    if(p==q || res[p]==0){continue;}
    res[p]--;res[q]++;
    long long cursc=eval(res,false);
    if(maxsc<=cursc){
      maxsc=cursc;
    }
    else{res[p]++;res[q]--;}
  }

  eval(res,true);
  return 0;
}
0