結果
問題 | No.2161 Black Market |
ユーザー | kakel-san |
提出日時 | 2023-02-05 13:39:13 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 749 ms / 7,000 ms |
コード長 | 3,309 bytes |
コンパイル時間 | 15,170 ms |
コンパイル使用メモリ | 168,904 KB |
実行使用メモリ | 190,128 KB |
最終ジャッジ日時 | 2024-07-04 03:25:09 |
合計ジャッジ時間 | 16,365 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
31,352 KB |
testcase_01 | AC | 60 ms
30,976 KB |
testcase_02 | AC | 64 ms
31,488 KB |
testcase_03 | AC | 62 ms
30,976 KB |
testcase_04 | AC | 65 ms
30,976 KB |
testcase_05 | AC | 59 ms
30,720 KB |
testcase_06 | AC | 66 ms
31,488 KB |
testcase_07 | AC | 66 ms
31,616 KB |
testcase_08 | AC | 64 ms
31,616 KB |
testcase_09 | AC | 65 ms
31,708 KB |
testcase_10 | AC | 66 ms
31,744 KB |
testcase_11 | AC | 66 ms
31,872 KB |
testcase_12 | AC | 63 ms
31,616 KB |
testcase_13 | AC | 60 ms
30,976 KB |
testcase_14 | AC | 64 ms
31,232 KB |
testcase_15 | AC | 65 ms
31,104 KB |
testcase_16 | AC | 65 ms
31,744 KB |
testcase_17 | AC | 62 ms
31,232 KB |
testcase_18 | AC | 62 ms
30,976 KB |
testcase_19 | AC | 66 ms
31,488 KB |
testcase_20 | AC | 318 ms
41,408 KB |
testcase_21 | AC | 317 ms
41,564 KB |
testcase_22 | AC | 345 ms
41,856 KB |
testcase_23 | AC | 350 ms
41,600 KB |
testcase_24 | AC | 749 ms
69,120 KB |
testcase_25 | AC | 462 ms
69,632 KB |
testcase_26 | AC | 649 ms
70,656 KB |
testcase_27 | AC | 421 ms
70,400 KB |
testcase_28 | AC | 424 ms
68,480 KB |
testcase_29 | AC | 162 ms
41,472 KB |
testcase_30 | AC | 96 ms
34,560 KB |
testcase_31 | AC | 427 ms
64,128 KB |
testcase_32 | AC | 405 ms
69,888 KB |
testcase_33 | AC | 114 ms
37,236 KB |
testcase_34 | AC | 129 ms
37,632 KB |
testcase_35 | AC | 138 ms
38,392 KB |
testcase_36 | AC | 103 ms
35,584 KB |
testcase_37 | AC | 82 ms
33,920 KB |
testcase_38 | AC | 178 ms
44,032 KB |
testcase_39 | AC | 81 ms
190,128 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (115 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray(); public static void Main() { Solve(); } static void Solve() { var c = NList; var (n, k, l, p) = (c[0], c[1], c[2], c[3]); var map = NArr(n); WriteLine(Market(n, k, l, p, map)); } static long Market(int n, int k, int l, int p, int[][] map) { var leftcnt = n / 2; var llist = BitList(map.Take(leftcnt).ToList()); var rlist = BitList(map.Skip(leftcnt).ToList()); llist.Sort((l, r) => l.val.CompareTo(r.val)); rlist.Sort((l, r) => r.val.CompareTo(l.val)); var cset = new HashSet<long>(); foreach (var li in llist) if (l - li.cost >= 0) cset.Add(l - li.cost); foreach (var ri in rlist) cset.Add(ri.cost); var clist = new List<long>(cset); clist.Sort(); var cdic = new Dictionary<long, int>(); for (var i = 0; i < clist.Count; ++i) cdic[clist[i]] = i; var rightcnt = n - n / 2; var ftlist = new FenwickTree[rightcnt + 1]; for (var i = 0; i < ftlist.Length; ++i) ftlist[i] = new FenwickTree(clist.Count); var ans = 0L; var cur = 0; foreach (var li in llist) { while (cur < rlist.Count && li.val + rlist[cur].val >= p) { ftlist[rlist[cur].cnt].Add(cdic[rlist[cur].cost], 1); ++cur; } if (l - li.cost < 0) continue; for (var i = 0; i < ftlist.Length && i + li.cnt <= k; ++i) { ans += ftlist[i].Sum(cdic[l - li.cost]); } } return ans; } static List<(int cnt, long cost, long val)> BitList(List<int[]> map) { var ans = new List<(int cnt, long cost, long val)>(); var bitmax = 1 << map.Count; for (var b = 0; b < bitmax; ++b) { var tmp = b; var cnt = 0; var cost = 0L; var val = 0L; for (var i = 0; i < map.Count; ++i) { if (tmp % 2 == 1) { ++cnt; cost += map[i][0]; val += map[i][1]; } tmp >>= 1; } ans.Add((cnt, cost, val)); } return ans; } class FenwickTree { int size; long[] tree; public FenwickTree(int size) { this.size = size; tree = new long[size + 2]; } public void Add(int index, int value) { ++index; for (var x = index; x <= size; x += (x & -x)) tree[x] += value; } /// <summary>先頭からindexまでの和(include index)</summary> public long Sum(int index) { ++index; var sum = 0L; for (var x = index; x > 0; x -= (x & -x)) sum += tree[x]; return sum; } } }