結果

問題 No.2390 Udon Coupon (Hard)
ユーザー x.t.x.t.
提出日時 2023-07-22 10:35:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,555 bytes
コンパイル時間 1,596 ms
コンパイル使用メモリ 166,888 KB
実行使用メモリ 13,752 KB
最終ジャッジ日時 2024-09-22 10:47:30
合計ジャッジ時間 6,747 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
13,752 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 396 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

// Problem: No.2386 Udon Coupon (Easy)No.2386 乌冬面优惠券 (简易)
// Contest: yukicoder
// URL: https://yukicoder.me/problems/no/2386
// Memory Limit: 512 MB
// Time Limit: 2000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=2e5+10;
const int INF=0x3f3f3f3f;
const int mod=1e9+7;
ll ksm(ll n,ll p,int mod){
	int ans=1;
	while(p){
		if(p&1) ans=(ans*n)%mod;
		n=(n*n)%mod;p>>=1;
	}
	return ans;
}
ll inv(ll b,ll c=mod) {return ksm(b,c-2,c);}
class Num{
public:
	ll num;
	Num(ll x) {num=(x%mod+mod)%mod;}
	Num operator+(Num p) {return Num(num+p.num);}
	Num operator-(Num p) {return Num(num-p.num);}
	Num operator*(Num p) {return Num(num*p.num);}
	Num operator/(Num p) {return Num(num*inv(p.num));}
	Num operator=(Num p) {this->num=p.num;return *this;}
	friend ll get(Num p) {return p.num;}
};
ll a[3],b[3];
void solve() {
	ll n;
	cin>>n;
	for(int i=0;i<3;i++) {
		cin>>a[i]>>b[i];
	}
	ll mx=0;
	for(ll x=0;x<=n;x+=a[0]) {
		ll res=x/a[0]*b[0],m=n-x;
		ll t1=x/3,t2=0,t3=0;
		if(b[1]*a[2]>=a[1]*b[2]) {
			res+=(m/a[1])*b[1];
			t2+=(m/a[1]);
			m%=a[1];
		}
		else {
			res+=(m/a[2])*b[2];
			t3+=m/a[2];
		    m%=a[2];
		}
		if(a[1]<=a[2]) {
			res+=(m/a[1])*b[1];
			t2+=m/a[1];
			m%=a[1];
		}
		else {
			res+=(m/a[2])*b[2];
			t2+=m/a[2];
			m%=a[2];
		}
		mx=max(mx,res);
	}
	cout<<mx<<endl;
}
int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int T=1;
    //cin>>T;
    while(T--) {
    	solve();
    }
    return 0;
}
0