QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#65246#4809. Maximum RangedutinmeowAC ✓470ms46680kbC++208.8kb2022-11-29 02:44:372022-11-29 02:44:41

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-11-29 02:44:41]
  • 评测
  • 测评结果:AC
  • 用时:470ms
  • 内存:46680kb
  • [2022-11-29 02:44:37]
  • 提交

answer

#include <bits/stdc++.h>

#include <algorithm>
#include <cassert>
#include <limits>
#include <queue>
#include <vector>


#include <vector>

namespace atcoder {

namespace internal {

template <class T> struct simple_queue {
    std::vector<T> payload;
    int pos = 0;
    void reserve(int n) { payload.reserve(n); }
    int size() const { return int(payload.size()) - pos; }
    bool empty() const { return pos == int(payload.size()); }
    void push(const T& t) { payload.push_back(t); }
    T& front() { return payload[pos]; }
    void clear() {
        payload.clear();
        pos = 0;
    }
    void pop() { pos++; }
};

}  // namespace internal

}  // namespace atcoder


namespace atcoder {

template <class Cap> struct mf_graph {
  public:
    mf_graph() : _n(0) {}
    explicit mf_graph(int n) : _n(n), g(n) {}

    int add_edge(int from, int to, Cap cap) {
        assert(0 <= from && from < _n);
        assert(0 <= to && to < _n);
        assert(0 <= cap);
        int m = int(pos.size());
        pos.push_back({from, int(g[from].size())});
        int from_id = int(g[from].size());
        int to_id = int(g[to].size());
        if (from == to) to_id++;
        g[from].push_back(_edge{to, to_id, cap});
        g[to].push_back(_edge{from, from_id, 0});
        return m;
    }

    struct edge {
        int from, to;
        Cap cap, flow;
    };

    edge get_edge(int i) {
        int m = int(pos.size());
        assert(0 <= i && i < m);
        auto _e = g[pos[i].first][pos[i].second];
        auto _re = g[_e.to][_e.rev];
        return edge{pos[i].first, _e.to, _e.cap + _re.cap, _re.cap};
    }
    std::vector<edge> edges() {
        int m = int(pos.size());
        std::vector<edge> result;
        for (int i = 0; i < m; i++) {
            result.push_back(get_edge(i));
        }
        return result;
    }
    void change_edge(int i, Cap new_cap, Cap new_flow) {
        int m = int(pos.size());
        assert(0 <= i && i < m);
        assert(0 <= new_flow && new_flow <= new_cap);
        auto& _e = g[pos[i].first][pos[i].second];
        auto& _re = g[_e.to][_e.rev];
        _e.cap = new_cap - new_flow;
        _re.cap = new_flow;
    }

    Cap flow(int s, int t) {
        return flow(s, t, std::numeric_limits<Cap>::max());
    }
    Cap flow(int s, int t, Cap flow_limit) {
        assert(0 <= s && s < _n);
        assert(0 <= t && t < _n);
        assert(s != t);

        std::vector<int> level(_n), iter(_n);
        internal::simple_queue<int> que;

        auto bfs = [&]() {
            std::fill(level.begin(), level.end(), -1);
            level[s] = 0;
            que.clear();
            que.push(s);
            while (!que.empty()) {
                int v = que.front();
                que.pop();
                for (auto e : g[v]) {
                    if (e.cap == 0 || level[e.to] >= 0) continue;
                    level[e.to] = level[v] + 1;
                    if (e.to == t) return;
                    que.push(e.to);
                }
            }
        };
        auto dfs = [&](auto self, int v, Cap up) {
            if (v == s) return up;
            Cap res = 0;
            int level_v = level[v];
            for (int& i = iter[v]; i < int(g[v].size()); i++) {
                _edge& e = g[v][i];
                if (level_v <= level[e.to] || g[e.to][e.rev].cap == 0) continue;
                Cap d =
                    self(self, e.to, std::min(up - res, g[e.to][e.rev].cap));
                if (d <= 0) continue;
                g[v][i].cap += d;
                g[e.to][e.rev].cap -= d;
                res += d;
                if (res == up) return res;
            }
            level[v] = _n;
            return res;
        };

        Cap flow = 0;
        while (flow < flow_limit) {
            bfs();
            if (level[t] == -1) break;
            std::fill(iter.begin(), iter.end(), 0);
            Cap f = dfs(dfs, t, flow_limit - flow);
            if (!f) break;
            flow += f;
        }
        return flow;
    }

    std::vector<bool> min_cut(int s) {
        std::vector<bool> visited(_n);
        internal::simple_queue<int> que;
        que.push(s);
        while (!que.empty()) {
            int p = que.front();
            que.pop();
            visited[p] = true;
            for (auto e : g[p]) {
                if (e.cap && !visited[e.to]) {
                    visited[e.to] = true;
                    que.push(e.to);
                }
            }
        }
        return visited;
    }

  private:
    int _n;
    struct _edge {
        int to, rev;
        Cap cap;
    };
    std::vector<std::pair<int, int>> pos;
    std::vector<std::vector<_edge>> g;
};

}  // namespace atcoder


namespace std {

template<class Fun>
class y_combinator_result {
	Fun fun_;
public:
	template<class T>
	explicit y_combinator_result(T &&fun): fun_(std::forward<T>(fun)) {}

	template<class ...Args>
	decltype(auto) operator()(Args &&...args) {
		return fun_(std::ref(*this), std::forward<Args>(args)...);
	}
};

template<class Fun>
decltype(auto) y_combinator(Fun &&fun) {
	return y_combinator_result<std::decay_t<Fun>>(std::forward<Fun>(fun));
}

} // namespace std

struct euler_tour_graph {
	int n, m;
	std::vector<int> degree, pos;
	std::vector<bool> visited;
	std::vector<std::vector<std::pair<int, int>>> adj;

	euler_tour_graph(int _n) : n(_n), m(0) {
		degree.resize(n);
		pos.resize(n);
		visited.resize(n);
		adj.resize(n);
	}

	void add_edge(int u, int v) {
		assert(0 <= u && u < n);
		assert(0 <= v && v < n);
		adj[u].emplace_back(v, m);
		adj[v].emplace_back(u, m);
		m++;
	}

	std::vector<int> euler_tour(int s) {
		fill(degree.begin(), degree.end(), 0);
		fill(pos.begin(), pos.end(), 0);
		visited.assign(m, false);

		std::vector<int> ret;
		std::stack<int> st;
		st.push(s);
		// degree[s]++;    // comment out to find tour instead of path
		while (!st.empty()) {
			int u = st.top();
			if (pos[u] == (int) adj[u].size()) {
				ret.push_back(u);
				st.pop();
				continue;
			}

			auto e = adj[u][pos[u]++];
			if (!visited[e.second]) {
				st.push(e.first);
				degree[u]--;
				degree[e.first]++;
				visited[e.second] = true;
			}
		}

		for (int i=0; i<n; i++)
			if (degree[i] < 0 || (int) ret.size() < m + 1)
				return {};
		return {ret.rbegin(), ret.rend()};
	}
};

int main() {
	using namespace std;

	int N, M;
	cin >> N >> M;
	vector<tuple<int, int, int>> E(M);
	vector<vector<pair<int, int>>> G(N);
	for (int i = 0; i < M; i++) {
		int u, v, w;
		cin >> u >> v >> w;
		u--, v--;
		G[u].emplace_back(v, w);
		G[v].emplace_back(u, w);
		E[i] = {u, v, w};
	}

	int tim = 0, scn = 0;
	vector<int> dfn(N, -1), low(N, -1), scc(N, -1);
	stack<int> stk;

	auto tarjan = y_combinator([&](auto self, int u, int p = -1) -> void {
		dfn[u] = low[u] = tim++;
		stk.push(u);
		for (auto [v, z] : G[u]) {
			if (dfn[v] == -1) {
				self(v, u);
				low[u] = min(low[u], low[v]);
			} else if (v != p) {
				low[u] = min(low[u], dfn[v]);
			}
		}
		if (low[u] == dfn[u]) {
			int v = -1;
			do {
				v = stk.top(); stk.pop();
				scc[v] = scn;
			} while (v != u);
			scn++;
		}
	});

	for (int i = 0; i < N; i++)
		if (dfn[i] == -1)
			tarjan(i);
	vector<int> rmn(scn, INT_MAX), rmx(scn, INT_MIN), num(scn, 0);
	for (auto [u, v, w] : E) {
		if (scc[u] != scc[v])
			continue;
		int s = scc[u];
		num[s]++;
		rmn[s] = min(rmn[s], w);
		rmx[s] = max(rmx[s], w);
	}
	int ans = INT_MIN, com = -1;
	for (int i = 0; i < scn; i++) {
		if (num[i] >= 2 && rmx[i] - rmn[i] > ans) {
			ans = rmx[i] - rmn[i];
			com = i;
		}
	}

	int su = -1, sv, tu, tv;
	for (auto [u, v, w] : E) {
		if (scc[u] != com || scc[v] != com)
			continue;
		if (w == rmx[com] && su == -1) 
			su = u, sv = v;
		else if (w == rmn[com])
			tu = u, tv = v;
	}
	atcoder::mf_graph<int> flo(N + 2);
	for (auto [u, v, w] : E) {
		if (scc[u] != com || scc[v] != com)
			continue;
		if ((u == su && v == sv) || (u == tu && v == tv))
			continue;
		flo.add_edge(u, v, 1);
		flo.add_edge(v, u, 1);
	}

	int ss = N, tt = N + 1;
	flo.add_edge(ss, su, 1);
	flo.add_edge(ss, sv, 1);
	flo.add_edge(tu, tt, 1);
	flo.add_edge(tv, tt, 1);
	assert(flo.flow(ss, tt) == 2);

	euler_tour_graph etg(N);
	map<pair<int, int>, int> sto;
	auto edg = flo.edges();
	for (auto [from, to, cap, flow] : edg) 
		if (flow == cap && from != ss && to != tt) 
			sto[{min(from, to), max(from, to)}]++;
	for (auto [p, n] : sto)
		if (n == 1)
			etg.add_edge(p.first, p.second);
	etg.add_edge(su, sv);
	etg.add_edge(tu, tv);
	auto ret = etg.euler_tour(su);

	assert(!ret.empty());
	ret.pop_back();
	cout << ans << '\n' << ret.size() << '\n';
	for (int u : ret)
		cout << u + 1 << ' ';
	cout << '\n';
}

詳細信息

Test #1:

score: 100
Accepted
time: 3ms
memory: 3408kb

input:

5 7
1 2 1
1 3 -2
2 3 1
3 4 3
4 5 1
1 5 -1
2 5 2

output:

5
4
3 4 5 1 

result:

ok ok

Test #2:

score: 0
Accepted
time: 170ms
memory: 18044kb

input:

99997 100000
12238 99016 352755196
99016 25485 -412473602
25485 2440 991507552
2440 31171 -181894654
36970 2440 -800167579
2440 41865 -148191946
96629 31171 847888506
36970 95740 395546542
27992 2440 647886610
99016 29557 369124914
80795 27992 -673871966
36970 3509 573208857
57672 29557 874406776
41...

output:

1959330954
37
94991 86274 74677 92617 86665 76022 72089 22074 96230 87712 51491 72825 3463 84407 67966 89628 84997 54073 68523 30288 88289 37694 96778 46301 34883 95092 31171 2440 25485 99016 29557 57672 69259 68883 44442 4697 96048 

result:

ok ok

Test #3:

score: 0
Accepted
time: 161ms
memory: 18100kb

input:

99997 100000
41884 21178 -431811360
41884 42699 -450057006
36523 21178 582079730
21178 96679 615552614
63637 21178 498974417
96679 5108 235820276
75058 41884 220112636
35148 42699 589595309
36523 18002 -637739861
65854 5108 -312755792
45137 41884 -511118771
5108 31311 554050951
25335 35148 -28341059...

output:

1968439328
40
98098 99686 71024 89860 18331 78274 35287 14678 59612 54901 26981 83047 87303 41126 28694 6204 50088 5108 7577 69337 51434 52252 25926 90144 26071 33264 70298 99716 98733 71151 55330 83919 83711 38202 85192 45137 41884 42699 87673 23692 

result:

ok ok

Test #4:

score: 0
Accepted
time: 173ms
memory: 18356kb

input:

99984 99999
33974 29867 335681778
33974 87468 348956829
83048 87468 320849805
29867 69456 -424530698
72457 69456 -950650074
53838 83048 755969166
85914 69456 569454441
51728 87468 -202158773
15970 29867 -865071002
15970 94894 697607001
94894 74694 616318126
33974 11496 -89287579
53838 34365 -6577379...

output:

1985932414
36
80694 78849 28078 91542 83656 97838 70238 5449 75902 51728 87468 83048 53838 29864 76013 1652 83298 23026 27866 92249 11395 303 46598 61993 55857 79605 58540 57640 55808 85914 75496 32897 79841 13570 35807 50114 

result:

ok ok

Test #5:

score: 0
Accepted
time: 176ms
memory: 18316kb

input:

99988 99992
8584 11873 -811540160
68064 11873 -930246087
11873 60056 916668870
68064 82193 -859062523
60056 75072 790866030
27767 75072 357619485
75072 78221 411650300
39636 82193 264106928
6675 60056 933851261
71747 78221 -508471038
11873 92771 -665232168
34402 27767 -906494982
11873 42714 63734230...

output:

1932268861
30
6675 28745 99809 8778 38274 64174 34179 75176 25891 62720 16385 20678 83884 75593 93559 21107 26922 8975 89787 23798 83283 2518 50628 88236 5185 29873 3186 91957 75072 60056 

result:

ok ok

Test #6:

score: 0
Accepted
time: 170ms
memory: 18052kb

input:

99996 99996
58191 98120 261718607
91298 98120 471683748
58191 68921 217652908
67441 91298 -731916804
78177 68921 810185021
98120 54747 -35446486
78177 2822 -409569426
91298 68058 -897038977
68921 39067 892161204
30165 78177 379543758
32418 98120 -139944101
11281 68921 422411872
37751 32418 331606200...

output:

1752928792
25
18913 85525 42296 25934 67249 16812 65221 81854 64478 74019 46983 4369 77560 30739 1917 58464 3308 3783 48440 58191 68921 11281 34081 78216 29915 

result:

ok ok

Test #7:

score: 0
Accepted
time: 140ms
memory: 18348kb

input:

99996 100000
39127 4358 657531703
4358 66528 484843263
47215 4358 -856669390
47215 26179 -147254695
24822 39127 -635228854
81984 26179 600617794
24822 60559 327733708
39127 23879 286268283
95563 81984 -766366787
96587 24822 723252700
23879 13711 -303309809
60559 38379 992907085
60559 6012 -15086498
...

output:

1948904917
51
60559 24822 39127 23879 13711 16150 60168 12024 27325 73608 58919 19383 92093 74141 3750 42006 67183 31390 97465 24485 4358 61378 82877 24890 38051 91154 63827 13465 90743 30145 41482 70789 91374 66385 37095 8030 96587 24822 10570 52647 79459 24450 54151 79904 28267 1066 23254 53517 37...

result:

ok ok

Test #8:

score: 0
Accepted
time: 161ms
memory: 18336kb

input:

99983 99998
360 38113 273639182
29807 360 -492749399
360 45494 960572841
67090 45494 -168787586
38113 61765 -90469418
71988 360 -556152065
67090 77653 704061103
30847 38113 542389160
84363 30847 295740326
30847 62591 -916431414
86104 77653 878763485
45494 11422 -795069866
86104 64096 714130240
61765...

output:

1972142685
35
64559 25273 47913 1904 50615 97340 8333 42546 32497 58830 58078 3710 93146 3381 46673 75450 28454 29807 67396 49296 2351 1877 74104 85692 24073 31895 12093 71599 84363 30847 38113 360 45494 67090 85762 

result:

ok ok

Test #9:

score: 0
Accepted
time: 162ms
memory: 18032kb

input:

99991 99993
70785 63179 -402654804
91872 63179 -441007900
30847 70785 779215016
72954 63179 -228470351
92375 30847 534166099
49724 63179 -37611056
44235 70785 -443931516
38220 44235 -187234181
44235 63035 -237171010
30847 50624 118354734
92375 24980 -382011924
56418 50624 -658160541
50624 10991 -966...

output:

1793776773
23
31140 44630 73442 3092 58361 62402 66274 56013 57891 97526 53000 30214 85483 52773 86737 91872 63179 72954 40199 70428 9524 46153 84999 

result:

ok ok

Test #10:

score: 0
Accepted
time: 140ms
memory: 18044kb

input:

99995 99997
93178 82375 -969044986
93178 19072 -204354005
35344 93178 172625135
93178 56390 -284098052
88798 19072 842699965
82375 24707 508376359
19072 71420 2142150
40446 93178 -437060610
40446 51377 -236216782
51377 89470 -349454494
19614 71420 -747727667
89470 14659 91615005
35344 49064 -7684125...

output:

1928930936
17
41657 3529 84372 80688 55069 65439 61912 53143 48876 3209 51377 40446 93178 82375 19871 6259 13782 

result:

ok ok

Test #11:

score: 0
Accepted
time: 149ms
memory: 18060kb

input:

99984 99992
13417 15144 707033172
79217 13417 -472387862
26033 13417 -36135406
13417 16174 -89686765
16174 96840 613288820
13417 11444 -398371819
11444 41716 627519572
41716 5951 233568303
96840 41978 -755500822
55150 41716 715325856
41978 88656 816236450
15144 5839 644375332
88656 95763 878003222
6...

output:

1958415767
40
11993 93511 80696 35258 84539 78871 41533 72086 64840 71601 61488 1019 19346 20549 6162 15155 65480 95763 95939 39284 33954 92172 82891 26100 81816 24802 65474 44860 12538 28616 36613 4719 62781 15965 90176 17104 96840 16174 13417 26033 

result:

ok ok

Test #12:

score: 0
Accepted
time: 309ms
memory: 36512kb

input:

80000 98516
26903 1777 -924244496
60501 50043 -169932745
73857 9688 924119596
51789 37304 -395289958
66012 19584 677645038
36094 31329 -438857807
23716 36356 333796707
64800 10550 -272867916
24677 61533 -276717055
37159 23410 564922612
57429 13265 -535543043
53527 15651 304660186
13261 58532 2102669...

output:

1999981013
59626
55945 35610 33489 22956 37280 5554 25291 37401 68116 11903 62056 3574 57161 11751 21406 42594 52409 21213 51177 73528 2409 21188 25284 13655 44843 43087 36973 78428 50116 40264 51819 60784 61422 14983 20524 29265 15997 9392 11500 5075 48045 17116 45337 28716 73863 64335 23992 1967 4...

result:

ok ok

Test #13:

score: 0
Accepted
time: 198ms
memory: 21780kb

input:

80000 94684
787 61972 -860542411
20083 27809 428832046
4166 26381 209001312
20451 29135 61290072
27638 15329 -490707445
59773 62375 228047113
41999 67706 -799550202
19069 6355 948713742
55898 70936 -879012749
13950 62531 -590275719
50627 17883 622866713
69768 13748 953427970
48538 24420 123552876
18...

output:

1999848367
19139
6242 8868 22787 536 26961 48083 30096 69870 75658 12953 78018 25236 30291 57383 45855 30483 14467 20186 12773 32741 66370 42794 8690 76254 64805 58571 3267 7607 27009 69564 70829 6110 52432 3023 35759 64978 61927 34019 5726 49733 50231 67450 76 69143 6859 73261 79628 66465 76642 135...

result:

ok ok

Test #14:

score: 0
Accepted
time: 231ms
memory: 24476kb

input:

85000 100000
12684 20697 -831379236
10219 41211 -539041569
17720 69181 -525999432
58189 3530 -215648248
29815 3583 -430621047
9529 62763 -641420982
54333 16217 517578175
3636 39822 -659701191
77761 44172 489371539
55825 60143 523113008
70503 23773 907033043
33924 58465 321062719
14586 28291 -3111270...

output:

1999860030
29750
74612 41650 66831 81261 52775 53632 48690 64262 6940 16530 16132 33762 12106 56678 41491 76176 79489 41293 65955 46190 34744 641 75419 81981 46957 58329 58150 79942 14961 11222 75086 12737 66265 21984 18776 44924 20511 37035 12940 73723 66805 79286 61000 54411 63511 41951 24676 4901...

result:

ok ok

Test #15:

score: 0
Accepted
time: 247ms
memory: 26632kb

input:

90000 98235
4034 56551 535462424
1285 78054 -432396039
13482 78432 326444126
36922 32666 -423303402
46270 14278 327106206
73367 11943 -120750644
57985 1074 521321207
51396 70877 604419844
80121 19287 -807213060
83316 29903 437891049
11641 29638 -109912627
54265 78774 -197898831
30288 41596 5540178
6...

output:

1999860693
31500
60067 7300 26771 14931 51692 83822 52198 50738 68125 6777 45812 3844 12974 15794 16455 81629 59778 10574 67097 75430 39564 23625 56491 30501 62398 58507 19129 25462 47205 31301 78365 1757 87085 73714 70677 63563 21533 75255 49244 67633 24457 7401 83887 18956 45692 68183 75261 10441 ...

result:

ok ok

Test #16:

score: 0
Accepted
time: 3ms
memory: 3420kb

input:

3 3
1 2 233
2 3 233
3 1 233

output:

0
3
1 2 3 

result:

ok ok

Test #17:

score: 0
Accepted
time: 267ms
memory: 29720kb

input:

80000 98516
79421 53468 -473723591
32949 9872 -473723591
62946 8406 -473723591
59103 43576 -473723591
16122 2510 -473723591
71372 57984 -473723591
69594 62336 -473723591
62408 2967 -473723591
55049 42762 -473723591
59003 53689 -473723591
40025 11987 -473723591
45334 77817 -473723591
78189 13603 -473...

output:

0
15735
79421 63039 61727 5584 63271 3231 56877 48948 14129 32723 14878 44140 41537 32539 18530 40753 31797 38960 49895 77685 65299 19239 7411 1179 50700 13922 23022 47455 23822 57757 38106 73263 4086 18368 69255 21759 52625 40922 47327 30123 70459 37650 73349 10432 27451 49108 58045 2904 41495 2711...

result:

ok ok

Test #18:

score: 0
Accepted
time: 162ms
memory: 17460kb

input:

80000 94684
47824 74620 763247771
43134 68794 613332131
70242 39382 613332131
66806 65879 75791783
75560 29585 -737165426
45214 2688 -196239255
8769 36609 75791783
37142 48567 891334271
6698 68647 -647334986
19812 30219 75791783
54674 54464 75791783
37193 432 312981361
61862 8510 924505446
46265 217...

output:

0
7
58244 36103 73213 24900 58244 40071 50813 

result:

ok ok

Test #19:

score: 0
Accepted
time: 164ms
memory: 18080kb

input:

85000 100000
31990 69099 -1731161
74081 84474 -843271979
69532 6116 -722727335
3141 60259 343298872
38598 67962 -767329308
30683 39703 -891912298
38710 77516 588627702
73818 32961 -280568563
67819 68460 -280568563
83602 37746 447820859
62363 72940 424564587
75905 14504 -672710766
36204 47164 -309254...

output:

0
5
39155 53339 34469 58561 34404 

result:

ok ok

Test #20:

score: 0
Accepted
time: 151ms
memory: 18632kb

input:

90000 98235
69866 86722 78531852
30106 32321 327858881
79041 9815 -587712775
79725 49462 -125435461
69389 86092 -1577070
50897 14792 41432121
56667 24207 607577044
57695 13616 -918716805
85852 55356 373162845
14242 66828 373162845
22169 53706 122244212
12914 13232 -32572189
89479 43813 373162845
170...

output:

0
3
41311 85938 64237 

result:

ok ok

Test #21:

score: 0
Accepted
time: 394ms
memory: 44064kb

input:

95000 95100
62823 7972 -98597476
11872 80236 -376224359
36239 18998 152179746
2941 59846 675971975
31009 87130 277327502
46848 88613 920187456
32265 89904 394908111
32665 71981 -717413241
22224 29525 -692676756
65253 56311 -576492743
55461 93031 -170229140
55015 388 -497138138
45550 26917 -268626991...

output:

1915204480
95000
4160 28774 9601 12786 64656 75876 34088 81064 87033 74037 68479 94509 16480 85808 59811 53334 74221 59899 74482 78202 64059 79325 72671 11742 2460 44103 76317 21215 63349 10894 85505 74515 11122 28133 88738 12088 31835 71636 30838 10996 53910 13126 4429 61885 37717 79146 38801 28050...

result:

ok ok

Test #22:

score: 0
Accepted
time: 439ms
memory: 44848kb

input:

95000 96000
8007 59556 217030444
46023 14373 -128335181
570 85822 126207845
80762 41869 723617383
46198 31613 465974823
58802 50379 140015731
2888 19011 720151475
74117 24138 -552326878
17454 57986 -347055744
36830 84433 -534562264
50548 57713 -335694553
93993 32600 -419354047
32724 61082 -652619648...

output:

1929035844
95000
84179 59123 75883 94708 77337 18765 94087 63591 7832 27620 29007 62832 38748 48205 50570 73136 48587 55066 1317 8806 27326 72463 52704 24337 77707 14728 41482 50204 55767 912 16355 81723 2755 48643 64564 35083 94923 34199 13082 15707 46872 23934 62048 47664 54648 36553 8514 35076 31...

result:

ok ok

Test #23:

score: 0
Accepted
time: 435ms
memory: 45484kb

input:

95000 100000
34956 60336 45395839
40278 30507 251182515
25816 87070 224950942
60653 29762 -585384516
62881 91427 422022135
44457 4481 606128079
41132 25251 -160882610
32094 84433 691041934
36977 23421 351841455
86462 6561 -425673978
22134 14854 -534276133
21754 19992 795688135
47865 45188 433897879
...

output:

1906862084
95000
31190 34761 73549 76256 38318 73868 20185 63755 89306 85258 8501 3134 77830 42164 69187 51279 24583 80476 47430 92183 82010 91817 2233 75856 61324 20004 57947 66733 55856 91542 73352 62074 72522 64449 14180 41125 68168 54470 63718 73133 24747 86765 49554 66421 89400 64273 85034 6331...

result:

ok ok

Test #24:

score: 0
Accepted
time: 461ms
memory: 46608kb

input:

99900 100000
70100 76896 -51386609
16964 79827 516332810
7183 80746 628092448
41385 96532 501920794
42994 48777 82641247
96028 56184 -67050812
32451 50173 -544563060
82225 66648 -50784922
2128 11900 360969680
70814 64690 710732642
83492 60589 106381086
94529 85166 -526924556
46377 77116 948457811
54...

output:

1895701144
99900
33009 26058 41364 2779 22481 81400 86821 70606 90239 70440 50483 86186 59350 15393 59117 59716 37520 3500 96659 2804 26839 20951 80304 9225 98101 63775 38194 65690 33904 9162 63572 58818 15707 62003 36733 80479 14536 67518 2474 1337 50750 75553 60352 24098 73588 31126 85671 67679 69...

result:

ok ok

Test #25:

score: 0
Accepted
time: 428ms
memory: 46680kb

input:

99990 100000
4011 68478 536045518
71538 84132 -940987458
2848 98397 -45141986
69542 48174 -35014400
28195 49500 447539981
97581 41986 205494807
31381 26461 -370585813
42843 8193 -69421974
33975 6124 -486808164
97261 43284 264346869
82796 18093 -14556989
32565 65612 -835815105
1213 99363 105551948
13...

output:

1888920939
99990
90781 50062 53237 6779 9611 99948 29405 3251 39377 37226 87035 27205 59989 51744 69981 64355 95520 69694 43268 71642 81924 23146 97392 7759 54100 96752 98172 61952 32884 16723 86429 67761 42013 16565 2730 45033 6614 69443 31487 96286 94271 13838 87494 50784 70059 4095 60884 88110 49...

result:

ok ok

Test #26:

score: 0
Accepted
time: 470ms
memory: 44940kb

input:

100000 100000
59304 76015 219875086
5260 1994 159258480
64311 53789 590132314
26577 82648 -132474446
81935 37887 643839658
75588 65296 -360133388
36819 63467 -804039106
83511 11104 307929972
82884 73421 -18000026
68841 40306 889617346
29987 70305 -422194823
54347 24412 -95291130
18090 67916 -9315885...

output:

1843628719
100000
92112 91641 15512 75027 8109 72484 95444 18176 54399 91064 92058 21809 16280 56323 38065 65827 14423 28205 7077 15220 20540 72082 53929 77029 88330 29015 21684 31048 90849 93092 77807 93202 92686 24482 73172 56603 72885 40406 86933 39439 92111 39613 74882 77854 57256 51434 84108 11...

result:

ok ok