Problem Package Format Specification
This site contains the specification for the (Kattis) Problem Package Format. There are currently three versions:
- The latest (draft) version: https://www.kattis.com/problem-package-format/spec/2023-07-draft.html.
- The current version: https://www.kattis.com/problem-package-format/spec/legacy.html.
- The ICPC subset of the current version: https://icpc.io/problem-package-format/spec/legacy-icpc.html.
The latest version is not yet widely supported, but if you're building tools and systems you should definitely take a look at it. If you're creating problems for official ICPC contests you should not assume more than the ICPC subset without talking to your technical staff.
Development happens in the GitHub repository: https://github.com/Kattis/problem-package-format.
Example Problems
To start with, it probably helps to see some examples. Here's a set of problems that are written in the (current) format: https://github.com/icpc/ncpc-web/releases/download/ncpc2015-data/ncpc2015all.tar.bz2 (Warning: 22+ MB download.) These were the problems used for NCPC 2015. You can see how they appear on Kattis in HTML here: https://ncpc15.kattis.com/problems
Kattis Problem Tools
Here is the source to the Kattis problemtools: https://github.com/Kattis/problemtools. You can install these on Ubuntu (see the README on that page). The three key programs you need from this are verifyproblem
, problem2pdf
, and problem2html
.
verifyproblem
Verifyproblem will do something like the following:
- check that the problem statement can be compiled (from LaTeX)
- check that there's at least one input format validator and one accepted submission
- run input format validators on all inputs
- run all submissions (accepted and otherwise) on the inputs and check that the results match the expectation
- run any output validators if they exist on output produced by the submissions
- compute time limits based on a time multiplier times the slowest accepted submission
Kattis Problem Format
Here's extensive documentation on the problem format: [Problem_Format] Note that some sections are deprecated and some are not yet implemented (but are marked as such).
Typical Problem Format Layout
The problem format is a directory with a top-level file problem.yaml
and a number of subdirectories (and sub-subdirectories). Here are some of the common things that are expected:
Test Data
data/sample/{a.in, a.ans}
– required; sample input file, corresponding answer file – these are automatically placed into the problem statement
data/secret/{a.in, a.ans}
– required; secret corresponding input / answer files
NB: Kattis runs all sample AND secret test cases with each submission, so no need to include an extra copy of the samples in the secret directory
NB: the order of tests is the file sort order of the file names (all samples before all secrets)
Validators
input_format_validators/
– required; contain program(s) which must accept each input file NB: the definition of an input validator accepting is exiting with exit code 42
output_validators/
– typically not used; here you can put program(s) which evaluate the correctness of a program's output (if the default behavior of comparing with a static file is not sufficient)
Problem Statement
statement/problem.tex
– required; the LaTeX file describing the problem
Submissions (Correct **and** Incorrect)
submissions/accepted/
– required; contain program(s) which give correct outputsubmissions/time_limit_exceeded/
– contain program(s) which are intended to take too longsubmissions/wrong_answer/
– contain program(s) which are intended to finish in time but give incorrect outputsubmissions/run_time_error/
– contain program(s) which are intended to result in a run-time error during execution (e.g. crash)
problem.yaml
problem.yaml
– required; metadata about the problem, such as authorship, license, judging flags, etc.
Using the Problem Format on Kattis Judge
When judging on Kattis, Kattis's default output validator is lenient on whitespace changing differences, but this can be made strict. Also, floating-point outputs can be judged to be correct within some specified tolerance (relative or absolute), which is really nice.