結果
| 問題 |
No.268 ラッピング(Easy)
|
| コンテスト | |
| ユーザー |
hirokazu1020
|
| 提出日時 | 2015-08-21 23:01:20 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 748 bytes |
| コンパイル時間 | 813 ms |
| コンパイル使用メモリ | 83,528 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-18 11:56:32 |
| 合計ジャッジ時間 | 1,355 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#include<sstream>
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<queue>
#include<numeric>
#include<functional>
#include<algorithm>
#include<bitset>
using namespace std;
#define INF (1<<29)
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define all(v) v.begin(),v.end()
#define uniq(v) v.erase(unique(all(v)),v.end())
#define indexOf(v,x) (find(all(v),x)-v.begin())
int main(){
int L[3],r,b,y;
cin>>L[0]>>L[1]>>L[2]>>r>>b>>y;
int ans=INF;
sort(L,L+3);
do{
int cost=0;
cost+=2*(L[1]+L[2])*r;
cost+=2*(L[0]+L[2])*b;
cost+=2*(L[0]+L[1])*y;
ans=min(ans,cost);
}while(next_permutation(L,L+3));
cout<<ans<<endl;
return 0;
}
hirokazu1020