Datasets:

ArXiv:
License:
zkjzou commited on
Commit
0573183
·
1 Parent(s): 78243aa

update readme.md

Browse files
Files changed (1) hide show
  1. README.md +62 -3
README.md CHANGED
@@ -1,3 +1,62 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ ---
4
+
5
+ # LiveOIBench Tests
6
+
7
+ LiveOIBnehch consists of 403 coding problems collected directly from the official websites of 72 competitions across 14 renowned Informatics Olympiads, focusing on contests held from 2023 onward. We collect all the offical test cases, human contestant ranking results, and contestant Codeforces profiles.
8
+
9
+ Please refer to the [paper](https://arxiv.org/abs/2510.09595) for more details and the [leaderboard](https://liveoibench.github.io/leaderboard.html) for the most up-to-date models' performance.
10
+
11
+ ## Usage
12
+
13
+ Please see this [Github repository](https://github.com/LiveOIBench/LiveOIBench-Evaluation) for downloading and processing the dataset.
14
+
15
+ ## Files
16
+
17
+ - `liveoibench_testcases_v1_2023.parquet` – testcases for problems from 2023.
18
+ - `liveoibench_testcases_v1_2024.parquet` – testcases for problems from 2024.
19
+ - `liveoibench_testcases_v1_2025.parquet` – testcases for problems from 2025/01 to 2025/05.
20
+
21
+ The test files are large; please download them with caution.
22
+
23
+ ## Schema
24
+
25
+ Each row in the testcases Parquet files has the following fields:
26
+
27
+ - `id`: Unique integer identifier for the row.
28
+ - `problem_id`: Identifier of the corresponding problem, matching
29
+ the `problem_id` column in LiveOIBench.
30
+ - `subtasks`: JSON‑encoded mapping from subtask indices to
31
+ subtask metadata. Each entry typically includes:
32
+ - `score` (numeric subtask score),
33
+ - `testcases` (list of testcase identifiers assigned to the subtask), and
34
+ - `task` (optional descriptive label for the subtask).
35
+ - `tests`: JSON‑encoded mapping from testcase identifiers to
36
+ their I/O content. For each testcase id, the value is an object containing
37
+ at least:
38
+ - `input` (raw input string passed to the solution),
39
+ - `output` (expected output string from the official judge).
40
+
41
+ Input and output strings are stored exactly as used by the official judge,
42
+ including newlines and any non‑ASCII characters.
43
+
44
+ ## License
45
+
46
+ This project is licensed under CC-BY-4.0. Please respect the original contest rules and attribution when using the
47
+ problems.
48
+
49
+ ## Citation
50
+
51
+ If you find LiveOIBench and the repo useful in your work, please cite:
52
+
53
+ ```bibtex
54
+ @article{zou2025liveoibench,
55
+ title={LiveOIBench: Can Large Language Models Outperform Human Contestants in Informatics Olympiads?},
56
+ author={Zou, Kaijian and Xiong, Aaron and Zhang, Yunxiang and Zhang, Frederick and Ren, Yueqi and Yang, Jirong and Lee, Ayoung and Bhushan, Shitanshu and Wang, Lu},
57
+ journal={arXiv preprint arXiv:2510.09595},
58
+ year={2025},
59
+ url={https://arxiv.org/abs/2510.09595},
60
+ doi={10.48550/arXiv.2510.09595}
61
+ }
62
+ ```