結果

問題 No.798 コレクション
ユーザー wakannyaaiwakannyaai
提出日時 2020-04-23 20:46:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 3,687 bytes
コンパイル時間 2,383 ms
コンパイル使用メモリ 178,992 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-04-21 22:48:34
合計ジャッジ時間 3,930 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
10,880 KB
testcase_01 AC 9 ms
11,008 KB
testcase_02 AC 9 ms
11,008 KB
testcase_03 AC 9 ms
11,008 KB
testcase_04 AC 10 ms
11,008 KB
testcase_05 AC 9 ms
11,136 KB
testcase_06 AC 10 ms
11,008 KB
testcase_07 AC 9 ms
11,008 KB
testcase_08 AC 10 ms
11,008 KB
testcase_09 AC 10 ms
11,008 KB
testcase_10 AC 10 ms
11,008 KB
testcase_11 AC 10 ms
11,008 KB
testcase_12 AC 9 ms
11,136 KB
testcase_13 AC 27 ms
24,704 KB
testcase_14 AC 36 ms
33,408 KB
testcase_15 AC 34 ms
30,208 KB
testcase_16 AC 20 ms
19,840 KB
testcase_17 AC 29 ms
25,344 KB
testcase_18 AC 45 ms
40,576 KB
testcase_19 AC 37 ms
34,560 KB
testcase_20 AC 21 ms
20,352 KB
testcase_21 AC 20 ms
18,944 KB
testcase_22 AC 33 ms
30,080 KB
testcase_23 AC 10 ms
11,136 KB
testcase_24 AC 47 ms
42,496 KB
testcase_25 AC 49 ms
42,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#include <unordered_set>
#define rep(i,n) for(int i = 0; i < n; i++)
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
#define vll vector<vector<long long>>
#define vl vector<long long>
#define vi vector<int>
#define vii vector<vector<int>>
#define pb push_back
#define pf push_front
#define ld long double
#define Sort(a) sort(a.begin(),a.end())
#define cSort(a,cmp) sort(a.begin(),a.end(),cmp)
#define reSort(a) sort(a.rbegin(), a.rend())
static const ll llMAX = numeric_limits<long long>::max();
static const int intMAX = numeric_limits<int>::max();
static const ll  llMIN = numeric_limits<long long>::min();
static const int intMIN = numeric_limits<int>::min();
static const ll d_5 = 100000;
static const ll d9_7 = 1000000007;
static const ll d_9 = 1000000000;
static const double PI=3.14159265358979323846;
template<class T>
T gcd(T a,T b){
  if(a==0){
    return b;

  }else if(b==0){
    return a;
  }
  while(1) {
    if(a < b) swap(a, b);
    if(!b) break;
    a %= b;
  }
  return a;
}
ll digitpower(ll a,ll b){//aのb乗を計算
  if(b==1){
    return a;
  }else if(b==0){
    return 1;
  }
  int mode=0;
  if(mode==0){
    if(b%2==1){
      ll tmp = digitpower(a,(b-1)/2);
      tmp%=d9_7;
      tmp*=tmp;
      tmp%=d9_7;
      tmp*=a;
      return (tmp)%d9_7;
    }else{
      ll tmp = digitpower(a,(b)/2);
      tmp%=d9_7;
      tmp*=tmp;
      tmp%=d9_7;
      return (tmp)%d9_7;
    }
  }else{
    if(b%2==1){
      ll tmp = digitpower(a,(b-1)/2);
      tmp*=tmp;
      tmp*=a;
      return (tmp);
    }else{
      ll tmp = digitpower(a,(b)/2);
      tmp*=tmp;
      return (tmp);
    }
  }
  return 0;
  
}
template<class T>
void Printvector(std::vector<T> &a){
  int size = a.size();
  rep(i,size){
    cout<<a[i]<<" ";
  }
  cout<<endl;
}
template<class T>
void Printvector(std::vector<std::vector<T>> &a){
  int size = a.size();
  rep(i,size){
    int size2=a[i].size();
    rep(j,size2){
      cout<<a[i][j]<<" ";
    }
    cout<<endl;
  }
  cout<<endl;
}
unordered_set<ll> primes(ll n){
  unordered_set<ll> ret;
  for(ll i=2;i*i<=n;i++){
    if(n%i==0){
      ret.insert(i);
      ret.insert(n/i);
    }
  }
  return ret;
}
long long modinv(long long a, long long m) {//modの逆元
    long long b = m, u = 1, v = 0;
    while (b) {
        long long t = a / b;
        a -= t * b; swap(a, b);
        u -= t * v; swap(u, v);
    }
    u %= m; 
    if (u < 0) u += m;
    return u;
}
vl facs(1000008,-1);
ll Factrial(ll num){
  if(facs[num]!=-1){
    return facs[num];
  }
  if(num==1||num<=0){
    return 1;
  }else if(num<0){
    printf("ERROR_minus\n");
    return 0;
  }else{
    facs[num]=(num*Factrial(num-1))%d9_7;
    return facs[num];
  }
}
struct c{
  ll a;
  ll b;
};
// 比較関数を定義
bool cmp( const c& left, const c& right ) {
    return left.b>right.b;
}
int main(void){
  ll n;
  cin>>n;
  vl a(n),b(n);
  vector<c> datas(n);
  rep(i,n){
    cin>>a[i]>>b[i];
    datas[i]={a[i],b[i]};
  }
  sort(datas.begin(),datas.end(),cmp);
  int d=n/3;//必要な日数
  vll dp(n+1,vl(n+1,llMAX/100));
  dp[0][0]=0;
  rep(i,n){
    dp[i][0]=0;
  }
  rep(i,n){
    rep(j,n){
      dp[i+1][j+1]=min(dp[i][j+1],dp[i][j]+datas[i].a+datas[i].b*(j));
    }
  }
  cout<<dp[n][n-n/3]<<endl;
  return 0;
}

//clang++ -g -fsanitize=address -fno-omit-frame-pointer 1.cpp -o test.exe

//<<std::setprecision(30)

//重複削除
 /* std::sort(vec.begin(), vec.end());
 
  vec.erase(std::unique(vec.begin(), vec.end()), vec.end());*/

  //ペアの全探索
  /*do{
		int s=0;
		for(int i=0;i<n/2;i++)s+=v[i]^v[i+n/2];
		r=max(s,r);
		reverse(v.begin()+n/2,v.end());
	}while(next_permutation(v.begin(),v.end()));*/
0