結果
問題 | No.999 てん vs. ほむ |
ユーザー | nanae |
提出日時 | 2020-02-28 21:53:52 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 2,141 bytes |
コンパイル時間 | 765 ms |
コンパイル使用メモリ | 112,280 KB |
実行使用メモリ | 12,900 KB |
最終ジャッジ日時 | 2024-06-22 05:36:37 |
合計ジャッジ時間 | 2,236 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | AC | 37 ms
12,900 KB |
testcase_10 | AC | 11 ms
6,944 KB |
testcase_11 | AC | 8 ms
6,940 KB |
testcase_12 | AC | 17 ms
6,940 KB |
testcase_13 | AC | 40 ms
12,672 KB |
testcase_14 | AC | 40 ms
12,696 KB |
testcase_15 | AC | 39 ms
12,636 KB |
testcase_16 | AC | 41 ms
12,740 KB |
testcase_17 | AC | 27 ms
9,800 KB |
testcase_18 | AC | 28 ms
9,500 KB |
testcase_19 | AC | 29 ms
9,204 KB |
testcase_20 | AC | 29 ms
10,080 KB |
testcase_21 | AC | 40 ms
12,760 KB |
testcase_22 | AC | 40 ms
12,664 KB |
ソースコード
import std.stdio, std.string, std.conv, std.range; import std.algorithm, std.array, std.typecons, std.container; import std.math, std.numeric, std.random, core.bitop; void scan(T...)(ref T args) { auto line = readln.split; foreach (ref arg; args) { arg = line.front.to!(typeof(arg)); line.popFront; } assert(line.empty); } void fillAll(R, T)(ref R arr, T value) { static if (is(typeof(arr[] = value))) { arr[] = value; } else { foreach (ref e; arr) { fillAll(e, value); } } } bool chmin(T, U...)(ref T x, U args) { bool isChanged; foreach (arg; args) if (x > arg) { x = arg; isChanged = true; } return isChanged; } bool chmax(T, U...)(ref T x, U args) { bool isChanged; foreach (arg; args) if (x < arg) { x = arg; isChanged = true; } return isChanged; } enum inf = 1_001_001_001; enum infl = 1_001_001_001_001_001_001L; void main() { int N; scan(N); auto a = readln.split.to!(long[]); auto l = new long[](N + 1); foreach (i ; 1 .. N + 1) { l[i] = l[i - 1] + a[2*(i-1)] - a[2*(i-1) + 1]; } auto r = new long[](N + 1); foreach_reverse (i ; 0 .. N) { r[i] = r[i + 1] + a[2*i + 1] - a[2*i]; } long ans = -infl; foreach (i ; 0 .. N + 1) { chmax(ans, l[i] + r[i]); } writeln(ans); } struct FenwickTree(T) { private { int _size; T[] _data; } this(int N) { _size = N; _data = new T[](_size + 1); } void add(int i, T x) { i++; while (i <= _size) { _data[i] += x; i += i & (-i); } } T sum(int r) { T res = 0; while (r > 0) { res += _data[r]; r -= r & (-r); } return res; } } unittest { auto ft = FenwickTree!(int)(10); ft.add(0, 3); ft.add(2, 4); ft.add(5, 1); assert(ft.sum(0) == 0); assert(ft.sum(1) == 3); assert(ft.sum(2) == 3); assert(ft.sum(3) == 7); assert(ft.sum(5) == 7); assert(ft.sum(6) == 8); }