Skip to content
This repository has been archived by the owner on Nov 26, 2022. It is now read-only.

Latest commit

 

History

History
240 lines (172 loc) · 10.1 KB

README.md

File metadata and controls

240 lines (172 loc) · 10.1 KB

KSN 2020 Problem Repository

Problem repository of KSN 2020 (also known internationally as TOKI KSN Open Contest 2020).

Problems

Alias Slug Title (id) Title (en) Type
0A ksn-2020-menara-pangkat Menara Pangkat Power Tower batch
0B ksn-2020-empat-kuadrat Empat Kuadrat Four Squares output-only
0C ksn-2020-mengambil-batu Mengambil Batu Taking Stones interactive
1A ksn-2020-pertahanan-negara Pertahanan Negara National Defence output-only
1B ksn-2020-tumpukan-balok Tumpukan Balok Block Piles batch
1C ksn-2020-menjaga-jarak Menjaga Jarak Maintaining Distance batch
2A ksn-2020-makhluk-jahat Makhluk Jahat Evil Spirit batch
2B ksn-2020-pilar-ajaib Pilar Ajaib Magical Pillar batch
2C ksn-2020-mencari-bola Mencari Bola Finding Balls interactive

Credits

Slug Problem Author(s)
ksn-2020-menara-pangkat Prabowo Djonatan
ksn-2020-empat-kuadrat Prabowo Djonatan
ksn-2020-mengambil-batu Prabowo Djonatan, Lie Maximilianus Maria Kolbe
ksn-2020-pertahanan-negara Abdul Malik Nurrokhman
ksn-2020-tumpukan-balok Rico Filberto
ksn-2020-menjaga-jarak Abdul Malik Nurrokhman
ksn-2020-makhluk-jahat Prabowo Djonatan
ksn-2020-pilar-ajaib Andreas Martin, Lie Maximilianus Maria Kolbe
ksn-2020-mencari-bola Prabowo Djonatan, Abdul Malik Nurrokhman

Upsolving

The problem statements and upsolving are available on TLX.

Editorial

The (unofficial) editorial written by the community can be found in this Codeforces blog.

Problem Repository Structure

Each problem contains a problem directory root (e.g. ksn-2020-menara-pangkat/ in this directory is a problem directory root). A problem directory root contains exactly the following directories and files:

Communicator (optional)

Communicator is named communicator.cpp. It follows tcframe communicator format. If the problem type is not interactive, this file can be ignored.

Configuration file

Configuration file is named config.json. Configuration file makes it easier for automated tools and problem uploader to choose the correct settings/configurations in online judges. Configuration file contains a JSON object contains the following:

"title_en" (str)

Problem Title in English.

"title_id" (str)

Problem Title in Bahasa.

"memory_limit_mb" (int)

Problem Memory Limit (in MB).

"time_limit_ms" (int)

Problem Time Limit (in ms).

"points" (List[int])

The points of each subtasks. The length of this array indicates the number of subtasks. The i-th element of this array is the points of the i-th subtask.

"sample_cases" (List[List[bool]])

Sample cases properties. The length of this array indicates the number of sample cases. The i-th element of this array contains S booleans, where S is the number of subtasks. The j-th element of this array indicates whether the i-th sample case satisfies the j-th subtask constraint.

"test_groups" (List[List[bool]])

Test groups properties. The length of this array indicates the number of test groups. The i-th element of this array contains S booleans, where S is the number of subtasks. The j-th element of this array indicates whether every test case in the i-th test group satisfies the j-th subtask constraint.

"solutions" (List[Object])

Solutions properties. The length of this array indicates the number of solutions (excluding model solution). The i-th element of this array contains an object. The object contains the following:

  • filename (str): The filename of the solution in the solution/ directory. This file must exists.
  • verdicts (List[str]): An array containing S elements, where S is the number of subtasks. The i-th element of this array represents the expected verdict of the i-th subtask, either one of the following:
    • ACCEPTED: The solution is expected to be correct.
    • WRONG_ANSWER: The solution is expected to produce a wrong answer.
    • TIME_LIMIT_EXCEEDED: The solution is expected to timed out.
    • RUNTIME_ERROR: The solution is expected to crash.
    • INCORRECT_SOLUTION: The solution is expected to be not correct. This is used when it is not clear whether the solution will crash or produce a wrong answer, usually due to an undefined behaviour.
    • DO_NOT_RUN: Do not use this for now.

"interactive" (Optional[bool])

Interactive-type problem label. If left blank, the default value is False.

EN problem description

English problem description is named description-en.html. Please refer to the description-en.html in the sample problem for the template of this HTML. Note that the sample cases are not included in this HTML file.

Three custom tags are used:

  • A <samplecase{i}/> tag is used to indicate where to put the i-th sample case.
  • A <open{i}/> tag is used to indicate where to put the i-th open subtask.
  • A <subtask{i}/> tag is used to indicate where to put the i-th subtask header.

The finalized problem description HTML can be generated using gen_problem.py utility.

ID problem description

Bahasa problem description is named description-id.html. It has the same format as EN problem description

Helper files directory (optional)

Helper files directory is named helpers/. This directory exists if there is/are helper files (such as scripts) specific to the problem. For example, a helper file could be a Python script to plot input files for geometry problems.

Open subtasks directory (optional)

Open subtasks directory is named opens/. The directory contains open_{i}.in for all 1 ≤ i ≤ N where N is the number of open subtasks. Intuitively, open_{i}.in contains the i-th open subtask input. If there is no open subtask, this directory can be ignored.

Render directory (optional)

Render directory is named render/. This directory contains supplementary files to the problem description (e.g. images). If there is no supplementary files, this directory can be ignored.

Sample cases directory

Sample cases directory is named samples/. The directory contains sample_{i}.in and sample_{i}.out for all 1 ≤ i ≤ N where N is the number of sample cases. Intuitively, sample_{i}.in contains the i-th sample input and sample_{i}.out contains the i-th sample output.

Output validator (optional)

Output validator is named scorer.cpp. It follows tcframe output validator format. Note that scorer.cpp must exist in all non-interactive type problems. If the problem type is interactive, this file can be ignored.

Model solution

Model solution is named solution.cpp. This solution is used to generate the output of each test data. The output produced by this solution for sample_{i}.in must exactly match sample_{i}.out.

Solutions directory

Solutions directory is named solutions/. Solutions other than model solution (usually for testing purposes) are stored in this directory.

Test case generator

Test case generator is named spec.cpp. It uses tcframe version 1.6.0. The test case generator must not specify the number of points given to any subtask. For all 1 ≤ i ≤ N where N is the number of open subtasks, the generated i-th test group must only contains one test case and matches opens/open_{i}.in.

Input verifier

Input verifier is named verifier.py. It reads the input file from stdin and the subtask index (1-based) from argv[1]. It should exit gracefully and produce no output if the input is correct, and should crash if the input is not correct.

Generated files

The finalized HTML descriptions and test cases generated using gen_problem.py utility.

Several notes

C++ versions

All C++ scripts (testdata generators, solutions, output validators, and communicators) must be compilable with C++11.

Python versions

All Python scripts (input verifiers) must be runnable with Python 3.

License

All tasks and materials are published under the Creative Commons Attribution (CC-BY) License.