Sponsors

Codeforces Round #379 (Div. 2), problem: (C) Anton and Making Potions Solution in C

Hey guys I just tried the Anton and Making Potions problem , hope you might like my solution feel free to comment better solution .

#include

#define N 200000

struct type2 {
int c, d;
} yy[N];

int binsearch(struct type2 *yy, int x, int k) {
int l = -1, r = k;

while (r – l > 1) {
int m = (l + r) / 2;

if (yy[m].d > x)
r = m;
else
l = m;
}
return l;
}

int main() {
int i, n, m, k, x, s;
long long min;
static int aa[N], bb[N];

scanf(“%d%d%d%d%d”, &n, &m, &k, &x, &s);
for (i = 0; i < m; i++) scanf("%d", &aa[i]); for (i = 0; i < m; i++) scanf("%d", &bb[i]); for (i = 0; i < k; i++) scanf("%d", &yy[i].c); for (i = 0; i < k; i++) scanf("%d", &yy[i].d); for (i = 0; i < k; i++) if (yy[i].d > s)
break;
i–;
if (i >= 0)
min = (long long) (n – yy[i].c) * x;
else
min = (long long) n * x;
for (i = 0; i < m; i++) { int j; if (bb[i] > s)
continue;
j = binsearch(yy, s – bb[i], k);
if (j >= 0) {
long long t = (long long) aa[i] * (n – yy[j].c);

if (min > t)
min = t;
} else {
long long t = (long long) aa[i] * n;

if (min > t)
min = t;
}
}
printf(“%lld\n”, min);
return 0;
}

Meta’s stock surges on...

Meta Platforms Stock Soars on Blockbuster Q4 Earnings and...

Do hedgehogs have heat...

Unraveling the Mystery: Do Hedgehogs Experience Heat Cycles? For those...

I made one change...

The One TV Setting Change That Instantly Improves Your...

Which scientist born in...

Ernst Öpik: The Legendary Astrophysicist Born on November 13th In...

Master Chief voice actor...

Master Chief Voice Actor Steve Downes Slams Unauthorized AI...

Hotel software maker Mews...

Mews Secures Massive $300M Series D Round, Hitting $2.5...

Meta’s stock surges on strong earnings, revenue and bullish guidance

Meta Platforms Stock Soars on Blockbuster Q4 Earnings and Bullish Outlook Meta Platforms Inc., the parent company of Facebook, Instagram, and WhatsApp, delivered a massive...

Do hedgehogs have heat cycles?

Unraveling the Mystery: Do Hedgehogs Experience Heat Cycles? For those fascinated by the natural world, the reproductive habits of unique mammals often raise curious questions....

I made one change and streaming instantly got better

The One TV Setting Change That Instantly Improves Your Streaming Experience If you've recently upgraded to a new smart TV and noticed that your favorite...

Which scientist born in 13 november?

Ernst Öpik: The Legendary Astrophysicist Born on November 13th In the vast calendar of scientific history, certain dates mark the beginning of groundbreaking lives. November...

Master Chief voice actor Steve Downes says AI voice cloning crosses a line and wants it to stop

Master Chief Voice Actor Steve Downes Slams Unauthorized AI Voice Cloning The iconic voice behind the legendary Master Chief of the Halo series, Steve Downes,...

Hotel software maker Mews nabs $300M at $2.5B valuation

Mews Secures Massive $300M Series D Round, Hitting $2.5 Billion Valuation The landscape of hospitality technology is rapidly evolving, and few companies are making a...

Lagos forum launches scholarship drive for indigent secondary students

Lagos Gentry Forum Launches Crucial Scholarship Drive for Indigent Students In a significant move aimed at democratizing access to tertiary education, the Lagos Gentry Forum...

Quick News: Red, Custom, Fix, Bambo, Kenan

President Claremont and King James III Return: 'Red, White & Royal Wedding' Sequel Confirmed Fans of the beloved romantic comedy Red, White & Royal Blue...

AGI Needs World Models and State of World Models

Demis Hassabis: AGI Requires 'World Models,' LLMs Alone Are Not Enough In the fiercely competitive race toward Artificial General Intelligence (AGI), the CEOs of leading...