| # | User | Rating |
|---|---|---|
| 1 | Kevin114514 | 3765 |
| 2 | tourist | 3757 |
| 3 | Benq | 3738 |
| 4 | jiangly | 3705 |
| 5 | orzdevinwang | 3670 |
| 6 | ksun48 | 3668 |
| 7 | Radewoosh | 3531 |
| 8 | maroonrk | 3443 |
| 9 | dXqwq | 3436 |
| 10 | Nachia | 3432 |
| # | User | Contrib. |
|---|---|---|
| 1 | Um_nik | 169 |
| 2 | Qingyu | 164 |
| 3 | errorgorn | 163 |
| 4 | adamant | 158 |
| 5 | cry | 153 |
| 6 | Proof_by_QED | 152 |
| 7 | Dominater069 | 150 |
| 8 | TheScrasse | 143 |
| 8 | soullless | 143 |
| 10 | Arpa | 141 |

Hello Codeforces,
I want to share with you a simple tool that I've been using for a while now that I named "Ineffable".
Simple command-line grader for local grading of solutions for problems of competitive programming contests. It is written in Python and it usestimeout Perl library to limit resources (time and memory limits) of program being tested.
It works on Ubuntu, and I guess it should work on any Linux/Unix system as long as Python and Perl are installed.


(Original quote is "Success consists of going from failure to failure without loss of enthusiasm")
Run the following commands on your terminal:
$ mkdir ~/.ineffable$ cd ~/.ineffable$ wget https://bitbucket.org/silap/ineffable/downloads/ineffable-1.0.zip$ unzip master.zip$ rm master.zip$ mv silap-ineffable-*/* .$ rm -r silap-ineffable-*/$ sudo ln -s ~/.ineffable/ineffable /usr/local/bin/ineffableOr alternatively you may run this command if you have curl installed:
$ bash < <(curl -sL https://bitbucket.org/silap/ineffable/raw/f208b207160eacd8ba4c30c078d1255e309c6b40/install.sh)Whenever you run ineffable it looks forineff.json file. You can also tell ineffable which configuration file to use using this syntax:inefabble another.json.
Configuring ineffable is easy and quite intuitive. After you install ineffable you can view the example configuration file that is located at~/.ineffable/ineff.json.example.
Available configuration options are as follows:
| key | example value | Description |
|---|---|---|
| pkdesc | "Balkan OI 2014 Day 2 Problem Ephesus" | Package description. (Optional) |
| pbcode | "steeple" | Problem code. Ineffable searches for string{PROBLEM} in keyswarmup,execute,inp,out andtstdir, and replaces them withpbcode value. (Optional) |
| tl | 1000 | Time limit (in milliseconds). (Required) |
| ml | 65536 | Memory limit (in kilobytes). (Required) |
| warmup | "g++ -O2 -o solution solution.cpp" | Command to be executed before the grading starts. For example, it can be used to compile C++ code. Grading stops if the command exits with non-zero code (such as, when compilation fails). (Optional) |
| execute | "./solution" or "python solution.py" | Command that runs the solution.Solution needs to read from stdin and write to stdout. (Required) |
| tstdir | "steeple_tests" | Directory where the test files are located. If ommited, it is assumed that tests are located in the current directory. (Optional) |
There are 2 different ways to show ineffable which files are input files and which files are output files:
Smart stars:
"inp": "input*.txt","out": "output*.txt"
Listing files.
# Syntax 1"iopairs": { "input1.txt": "output1.txt", "input2.txt": "output2.txt", "input3.txt": "output3.txt"}# Syntax 2"iopairs": { "inp": {"input1.txt", "input2.txt", "input3.txt"}, "out": {"output1.txt", "output2.txt", "output3.txt"}}Let's solve problem Cow Steeplechase ofUSACO 2011 November Contest.
$ # Create folder `steeple` in your desktop and another folder `steeple_tests` inside it.$ mkdir Desktop/steeple$ cd Desktop/steeple$ mkdir steeple_tests$ cd steeple_tests$$ # Download and extract test data into `steeple/steeple_tests/`.$ wget -q http://usaco.org/current/data/steeple.zip$ unzip -q steeple.zip$ rm steeple.zip$ cd ..$$ # Create file `ineff.json` and configure.$ touch ineff.json$ echo '{ "pkdesc": "Cow Steeplechase (USACO Gold November 2011 Contest)", "pbcode": "steeple", "tl": 3000, "ml": 65536, "warmup": "g++ -std=c++11 -O2 -o {PROBLEM} {PROBLEM}.cpp", "execute": "./{PROBLEM}", "tstdir": "{PROBLEM}_tests/", "inp": "I.*", "out": "O.*"}' >ineff.json$$ # Create `steeple.cpp` and open it with your favorite editor to code your solution.$ touch steeple.cpp$ vim steeple.cpp$ # ...$$ # Test your solution$ ineffableAs I haven't spent much effort in making ineffable, there may be some bugs. I won't be able to fix the bugs at least till the IOI 2015 ends.
Ineffable is a simple project and anyone who knows some Python can alter it for their own purpose or even add some features. Project is available onBitbucket (sorry no Github, it is blocked in my country :/).
EDIT: "Installation" section updated.
EDIT 2: Download links updated (to be able to keep number of downloads :P).
» |
» | This looks amazing! |
» » |
» |
» | Alternative installation method was corrected. Sorry for any inconvenience. :p |
» | Tested on Mac OS X (10.11) and found out that timeout script is not compatible with it! also I think you made a mistake in your installation scripts! the zip file isn't named PS: I read that source code, and everything seemed amazing, but one thing! In my opinion, instead of using Good Luck :D |
» » |
» » | Thank you. After my last IOI, I haven't used it myself.zemen proposed some improvements, but unfortunately I (unwillingly) ignored them. Primary reasons were that I was not very familiar with git at that time and couldn't find time to learn more about git. Now that I have a bit more free time, I think I can get my hands on that and add the checker feature. Thanks for the suggestion. |
» |
» | Amazing thanks. Just wondering if it is available for android? |
» » |
» |
» | Download link is broken! EDIT: I found it. Followed the instructions changing |
| Name |
|---|