QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#532800 | #6660. 택시 여행 | orz_z | 0 | 245ms | 51996kb | C++14 | 6.7kb | 2024-08-25 12:05:28 | 2024-08-25 12:05:28 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
//#define int long long
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef double db;
#define F(i, a, b) for(int i = a; i <= (b); ++i)
#define F2(i, a, b) for(int i = a; i < (b); ++i)
#define dF(i, a, b) for(int i = a; i >= (b); --i)
template<typename T> void debug(string s, T x) {cerr << "[" << s << "] = [" << x << "]\n";}
template<typename T, typename... Args> void debug(string s, T x, Args... args) {for (int i = 0, b = 0; i < (int)s.size(); i++) if (s[i] == '(' || s[i] == '{') b++;else if (s[i] == ')' || s[i] == '}') b--;else if (s[i] == ',' && b == 0) {cerr << "[" << s.substr(0, i) << "] = [" << x << "] | ";debug(s.substr(s.find_first_not_of(' ', i + 1)), args...);break;}}
#ifdef ONLINE_JUDGE
#define Debug(...)
#else
#define Debug(...) debug(#__VA_ARGS__, __VA_ARGS__)
#endif
#define pb push_back
#define fi first
#define se second
#define Mry fprintf(stderr, "%.3lf MB\n", (&Med - &Mbe) / 1048576.0)
#define Try cerr << 1e3 * clock() / CLOCKS_PER_SEC << " ms\n";
typedef long long ll;
// namespace Fread {const int SIZE = 1 << 17; char buf[SIZE], *S, *T; inline char getchar() {if (S == T) {T = (S = buf) + fread(buf, 1, SIZE, stdin); if (S == T) return '\n';} return *S++;}}
// namespace Fwrite {const int SIZE = 1 << 17; char buf[SIZE], *S = buf, *T = buf + SIZE; inline void flush() {fwrite(buf, 1, S - buf, stdout), S = buf;} inline void putchar(char c) {*S++ = c;if (S == T) flush();} struct NTR {~NTR() {flush();}} ztr;}
// #ifdef ONLINE_JUDGE
// #define getchar Fread::getchar
// #define putchar Fwrite::putchar
// #endif
inline int ri() {
int x = 0;
bool t = 0;
char c = getchar();
while (c < '0' || c > '9') t |= c == '-', c = getchar();
while (c >= '0' && c <= '9') x = (x << 3) + (x << 1) + (c ^ 48), c = getchar();
return t ? -x : x;
}
inline void wi(int x) {
if (x < 0) {
putchar('-'), x = -x;
}
if (x > 9) wi(x / 10);
putchar(x % 10 + 48);
}
inline void wi(int x, char s) {
wi(x), putchar(s);
}
bool Mbe;
mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());
const int mod = 998244353;
const ll inf = 0x3f3f3f3f3f3f3f3f;
const int _ = 2e5 + 5;
bool Med;
int n, tot, head[_], to[_ << 1], nxt[_ << 1], w[_ << 1];
void add(int u, int v, int c) {
to[++tot] = v, nxt[tot] = head[u], head[u] = tot, w[tot] = c;
}
namespace Dis {
int dfn[_], cnt, Fa[_], st[_][20];
ll dep[_];
void dfs(int u, int fa) {
dfn[u] = ++cnt;
Fa[u] = fa;
st[dfn[u]][0] = u;
for(int i = head[u], v = to[i]; i; i = nxt[i], v = to[i]) if(v != fa) {
dep[v] = dep[u] + w[i];
dfs(v, u);
}
}
int get(int x, int y) {
return dfn[Fa[x]] < dfn[Fa[y]] ? x : y;
}
int lg[_];
int LCA(int u, int v) {
if(u == v) return u;
u = dfn[u], v = dfn[v];
if(u > v) swap(u, v);
u++;
int t = lg[v - u + 1];
return Fa[get(st[u][t], st[v - (1 << t) + 1][t])];
}
ll Dis(int u, int v) {
// Debug(u, v, LCA(u, v));
return dep[u] + dep[v] - (dep[LCA(u, v)] << 1);
}
void init() {
F(i, 2, n) lg[i] = lg[i >> 1] + 1;
dfs(1, 0);
F(j, 1, lg[n]) {
F(i, 1, n - (1 << j) + 1) st[i][j] = get(st[i][j - 1], st[i + (1 << (j - 1))][j - 1]);
}
}
}
ll f[_];
int Sum, rt, sz[_]; bool vis[_];
void get_rt(int u, int fa) {
int mx = 0;
for(int i = head[u], v = to[i]; i; i = nxt[i], v = to[i]) if(v != fa &&!vis[v]) {
get_rt(v, u);
mx = max(mx, sz[v]);
}
mx = max(mx, Sum - sz[u]);
if(mx <= Sum / 2) {
rt = u;
}
}
void get_sz(int u, int fa) {
sz[u] = 1;
for(int i = head[u], v = to[i]; i; i = nxt[i], v = to[i]) if(v != fa && !vis[v]) {
get_sz(v, u);
sz[u] += sz[v];
}
}
int Fa[_];
void work(int u) {
// Debug(u);
vis[u] = 1;
for(int i = head[u], v = to[i]; i; i = nxt[i], v = to[i]) if(!vis[v]) {
get_sz(v, u);
Sum = sz[v];
get_rt(v, u);
Fa[rt] = u;
work(rt);
}
}
pair<ll, ll> operator - (pair<ll, ll> a, pair<ll, ll> b) {
return make_pair(a.fi - b.fi, a.se - b.se);
}
struct Tubao {
vector<pair<ll, ll>> a;
void ins(ll x, ll y) {
if(a.empty()) {
a.pb({x, y});
return;
}
while(a.size() > 1 && 1ll * (a.back().se - a[(int)a.size() - 2].se) * (x - a.back().fi) < 1ll * (a.back().fi - a[(int)a.size() - 2].fi) * (y - a.back().se)) a.pop_back();
a.pb({x, y});
}
ll qry(ll x) {
if(a.empty()) {
return inf;
}
// Debug(a.size());
// ll res = inf;
// for(pair<ll, ll> v : a) res = min(res, v.fi * (x) + v.se);
// return res;
if((int)a.size() == 1) {
return a.front().fi * x + a.front().se;
}
int l = 1, r = (int)a.size() - 1, mid, res = 0;
// F(i, 0, r) Debug(i, 1.0 * (a[i].se - a[i - 1].se) / (a[i].fi - a[i - 1].fi), a[i].fi * x + a[i].se);
while(l <= r) {
mid = (l + r) >> 1;
if((a[mid].se - a[mid - 1].se) <= (a[mid].fi - a[mid - 1].fi) * (-x)) {
l = mid + 1;
res = mid;
} else {
r = mid - 1;
}
}
ll ans = min(inf, a[res].fi * x + a[res].se);
//// Debug(res, ans);
// l = 1, r = (int)a.size() - 1, res = 0;
// while(l <= r) {
// mid = (l + r) >> 1;
// if((a[mid].se - a[mid - 1].se) < (a[mid].fi - a[mid - 1].fi) * (-x)) {
// l = mid + 1;
// res = mid;
// } else {
// r = mid - 1;
// }
// }
// ans = min(ans, a[res].fi * x + a[res].se);
return ans;
}
} d[_];
ll a[_], b[_];
void ins(int u) {
for(int nw = u; nw; nw = Fa[nw]) {
d[nw].ins(a[u], f[u] + a[u] * Dis::Dis(u, nw) + b[u]);
}
}
ll qry(int u) {
ll res = inf;
for(int nw = u; nw; nw = Fa[nw]) {
res = min(res, d[nw].qry(Dis::Dis(u, nw)));
}
return res;
}
int p[_];
vector<long long> travel(vector<long long> A, vector<int> B, vector<int> U, vector<int> V, vector<int> W) {
n = A.size();
F(i, 1, n) a[i] = B[i - 1], b[i] = A[i - 1];
F(i, 0, n - 2) {
U[i]++, V[i]++;
add(U[i], V[i], W[i]);
add(V[i], U[i], W[i]);
}
Dis::init();
// Debug("Yes");
f[1] = 0;
F(i, 2, n) f[i] = a[1] * Dis::Dis(1, i) + b[1];
// Debug("2");
Sum = n;
get_sz(1, 0);
get_rt(1, 0);
work(rt);
// Debug("done");
F(i, 1, n) p[i] = i;
sort(p + 1, p + n + 1, [&](int a1, int b1) { return a[a1] > a[b1]; });
// F(i, 2, n) Debug(i, f[i], Dis::Dis(1, i));
F(i, 1, n) {
if(p[i] == 1) {
ins(1);
continue;
}
// Debug(p[i], f[p[i]], qry(p[i]));
f[p[i]] = min(f[p[i]], qry(p[i]));
ins(p[i]);
// Debug(qry(p[i]));
}
// F(i, 1, n) {
// Debug("222333333", i, (ll)qry(i));
// }
vector<ll> f2;
F(i, 2, n) f2.pb(qry(i));
return f2;
}
//signed main() {
// Mry;
// travel({10, 5, 13, 4, 3}, {10, 7, 5, 9, 1}, {1, 0, 3, 2}, {0, 2, 2, 4}, {1, 5, 10, 3});
// travel({251115773325 ,363097865287, 358609487841}, {826785, 213106 ,914768},{0,2},{1,0},{851938,231697});
// Try;
// return 0;
//}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 7
Accepted
time: 0ms
memory: 20256kb
input:
2 684124582850 713748627948 74361 256955 0 1 661088
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 733283747618 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 3 lines
Test #2:
score: 7
Accepted
time: 0ms
memory: 22320kb
input:
3 251115773325 363097865287 358609487841 826785 213106 914768 0 1 851938 2 0 231697
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 955485332655 442679377470 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 4 lines
Test #3:
score: 7
Accepted
time: 2ms
memory: 22352kb
input:
3 489998888627 318672977903 70353752652 258347 458793 258657 2 1 156120 0 2 524840
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 665922861747 625589728107 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 4 lines
Test #4:
score: 7
Accepted
time: 3ms
memory: 20272kb
input:
3 737471938521 315388610250 818943569900 726908 666797 564862 0 1 460302 0 2 785280
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1072069144737 1308298252761 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 4 lines
Test #5:
score: 7
Accepted
time: 3ms
memory: 22304kb
input:
4 201836820267 208957719162 992553400562 566050337171 243994 65303 590123 936951 1 0 259719 0 3 860376 3 2 513584
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 265206697953 537074816507 411763402011 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 5 lines
Test #6:
score: 7
Accepted
time: 0ms
memory: 20272kb
input:
4 440719935569 160237864481 704297665373 767778991240 451998 371509 46564 828427 1 0 861960 1 3 830699 2 3 185693
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 830324131649 1289731282865 1205798418251 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 5 lines
Test #7:
score: 7
Accepted
time: 0ms
memory: 22588kb
input:
5 148262899914 9382086008 622202345986 443806901161 213829280326 178155 503016 333953 572340 461148 0 3 453941 3 2 84057 4 0 171136 3 1 598794
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 335812903839 244109933604 229134758769 178751633994 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 6 lines
Test #8:
score: 7
Accepted
time: 2ms
memory: 22368kb
input:
5 391440982512 969252165920 333946610796 649830522527 902812044171 522045 996458 225429 545971 667483 0 1 701500 0 4 514779 2 1 435377 3 0 919439
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 757655550012 984941935977 871429515267 660178785567 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 6 lines
Test #9:
score: 7
Accepted
time: 3ms
memory: 24400kb
input:
17 315015458526 65513576283 829720084774 654640079244 561177336848 463903843105 496216524512 837433489064 92734412345 807145138979 250511786518 915329126804 373916658654 78276842047 121976569238 432447179015 519384539551 696133 642473 231377 987220 589587 337763 790202 785083 249580 108311 73808 892...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 430639669161 417840567823 403532946274 499079112962 498466070651 495984520010 499402357184 501387707132 498265325456 501233852966 474661031682 494612046266 411867746683 497598865088 499819422548 496976423075 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 18 lines
Test #10:
score: 7
Accepted
time: 0ms
memory: 22360kb
input:
20 764145449871 794297102632 450082553736 427358261877 587251097098 98567356955 15910789509 321286084089 25839798358 969219436118 975479420690 937908953492 410498404545 180209954689 302999489632 849828117651 171771046425 800442975277 295169929534 146003957886 828538 724406 733109 79844 665172 652593...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1384833390877 871900130923 1446847771547 1245326093057 924349900475 1046486123707 1063981383357 864751505059 1159443240947 824076089025 1448542597977 1486181926466 1488465960086 1424780088987 1478403270966 1303312410681 1485431478966 1135576549657 1412080059777...
result:
ok 21 lines
Test #11:
score: 7
Accepted
time: 0ms
memory: 20544kb
input:
20 286866076510 666296858783 319893290745 436172872006 579306725182 388780143357 429085643976 163864091991 334402956892 573150791451 971047548996 924353133556 82495144441 364862686518 76783079529 74022380610 978776791995 17833817791 637808249822 150520055702 705613 111460 694926 702547 748042 671482...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1345583882860 995125125260 815198043938 1295987956432 1034264067144 888082221934 1247814963646 1225117709350 631676569994 1289347270738 404306893004 1347095564962 373415155864 1441975557454 1167058795516 1091947224281 1373264198836 795244013911 1127743556434 se...
result:
ok 21 lines
Test #12:
score: 7
Accepted
time: 3ms
memory: 22580kb
input:
20 161996998737 15089127085 28063038428 574601167323 736141386895 762192247356 788118187801 956063872362 580983462657 839554694910 471536078792 781164874294 363054673222 809510755913 153755418459 78171544930 969593469579 864779185396 408120998971 610129629325 933618 563940 506188 824442 64614 396381...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1870873819056 1340292002469 2180029603234 1667979150565 2084831816447 1131232525437 1898452835615 1742994070672 2139665843266 1042857179175 2148449164384 1856727805178 2077059488718 1931794896836 1753987714167 1864830429393 1705470391803 1529058594761 197326523...
result:
ok 21 lines
Test #13:
score: 0
Wrong Answer
time: 4ms
memory: 24336kb
input:
20 443174843835 295023765677 175861678382 805210665445 724299682774 889923334441 967560897715 857729286838 7238459275 901083586058 887820756720 681912091803 886476957360 821901344613 222491154905 602669810322 953890359316 822857333786 674877086360 498973934687 505612 0 0 0 913180 49780 0 0 0 0 0 0 0...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1308653771410 561660971139 1308653771410 945673790751 1308653771410 1308653771410 637744453675 1308653771410 901966161411 1308653771410 1308653771410 1308653771410 1308653771410 1174854058827 1308653771410 1308653771410 608216207263 1308653771410 737522649521 s...
result:
wrong answer 2nd lines differ - expected: '737522649521', found: '1308653771410'
Subtask #2:
score: 0
Wrong Answer
Test #31:
score: 0
Wrong Answer
time: 245ms
memory: 51996kb
input:
100000 746699125678 374834842799 250803643493 620187038832 454433387570 406226564003 897157438699 99473514061 734784419618 503968957100 363935477037 277126009840 52078020050 990757079812 847235285349 950784717285 271017141367 861087225700 996035427219 520682200664 282013988419 415183977876 882007771...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1148030742334 1636760433058 2131282232650 2353514637869 2672707119337 2763307672337 2948215735597 3003888852169 3054019822989 3117708941277 3168979051095 3214001638323 3269286229765 3273106480907 3287227043365 3335909595067 3361857042147 3364657567217 338173015...
result:
wrong answer 1563rd lines differ - expected: '10912730561587', found: '17419891519059'
Subtask #3:
score: 0
Skipped
Dependency #1:
0%
Subtask #4:
score: 0
Wrong Answer
Test #69:
score: 0
Wrong Answer
time: 106ms
memory: 43988kb
input:
100000 15175010 23519365 21177669 27079342 9089 16784452 29693960 23124925 17048604 10179491 12828214 24992902 8483134 2928073 23807522 7332137 17421520 28460746 1607282 13224363 11900728 11794692 11495061 4687109 23460275 7657982 27417256 16978162 7326803 23083826 24942987 16610314 12147303 2828271...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 32224507 36536560 33544069 28351779 35997629 36135684 34902166 36076006 38278680 28774898 36531839 31629045 31962083 24154965 37370908 36675970 27488916 25383620 22952169 36299650 30716906 37104252 30577055 37631559 37573178 30988676 22168385 26594725 38031936 ...
result:
wrong answer 2nd lines differ - expected: '16705757', found: '32224507'
Subtask #5:
score: 0
Wrong Answer
Test #94:
score: 0
Wrong Answer
time: 106ms
memory: 45896kb
input:
99281 551670361798 568902251563 418071776626 697635341894 641578820039 117221079324 812766431051 425410617978 663769685693 282144284527 799662290178 749088952784 586626406385 122473825417 459510657357 871705247919 443707710712 735612808044 237919555727 829939639783 122127143240 616906466299 24431898...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1243368091251 1165103052975 1153144301934 1215182151398 1243368091251 1188823166831 1243368091251 1243368091251 1235023054633 1234794740177 1125779494551 1124960950325 1087703654823 1034586526129 1240692652286 1243368091251 1066246819389 1139520615941 120222769...
result:
wrong answer 2nd lines differ - expected: '598598746654', found: '1243368091251'
Subtask #6:
score: 0
Skipped
Dependency #1:
0%