├── .gitignore ├── .vscode └── settings.json ├── Checker.cpp ├── Generator.cpp ├── README.md ├── Solution.cpp ├── Validator.cpp ├── input.txt ├── output.txt └── testlib ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── checkers ├── .gitignore ├── acmp.cpp ├── caseicmp.cpp ├── casencmp.cpp ├── casewcmp.cpp ├── dcmp.cpp ├── fcmp.cpp ├── hcmp.cpp ├── icmp.cpp ├── lcmp.cpp ├── ncmp.cpp ├── nyesno.cpp ├── pointscmp.cpp ├── pointsinfo.cpp ├── rcmp.cpp ├── rcmp4.cpp ├── rcmp6.cpp ├── rcmp9.cpp ├── rncmp.cpp ├── uncmp.cpp ├── wcmp.cpp └── yesno.cpp ├── docs └── read.me ├── generators ├── bgen.cpp ├── gen-array-with-opt.cpp ├── gen-bipartite-graph.cpp ├── gen-rooted-tree-graph.cpp ├── gen-tree-graph.cpp ├── gs.cpp ├── igen.cpp ├── iwgen.cpp ├── multigen.cpp ├── sgen.cpp └── swgen.cpp ├── interactors └── interactor-a-plus-b.cpp ├── read.me ├── testlib ├── testlib.h ├── testlib.h.gch ├── tests ├── README.md ├── lib │ ├── msvc-2022-include.7z │ ├── testlib.h │ └── windows-kit-10.0.19041.0-include.7z ├── run.sh ├── scripts │ ├── compile │ └── test-ref ├── src │ └── tester-lcmp.cpp ├── t.bat ├── t.sh ├── test-000_compile-all-cpp │ └── run.sh ├── test-001_run-sval │ ├── files │ │ ├── unix │ │ │ └── sval │ │ │ │ ├── input.01 │ │ │ │ ├── input.02 │ │ │ │ ├── input.03 │ │ │ │ ├── input.04 │ │ │ │ ├── input.05 │ │ │ │ ├── input.06 │ │ │ │ ├── input.07 │ │ │ │ ├── input.08 │ │ │ │ ├── input.09 │ │ │ │ └── input.10 │ │ └── win │ │ │ └── sval │ │ │ ├── input.01 │ │ │ ├── input.02 │ │ │ ├── input.03 │ │ │ ├── input.04 │ │ │ ├── input.05 │ │ │ ├── input.06 │ │ │ ├── input.07 │ │ │ ├── input.08 │ │ │ ├── input.09 │ │ │ └── input.10 │ ├── refs │ │ ├── r-sval-input.01 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.02 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.03 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.04 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.05 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.06 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.07 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.08 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.09 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ └── r-sval-input.10 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ ├── run.sh │ └── src │ │ └── sval.cpp ├── test-002_run-fcmp-wcmp │ ├── files │ │ ├── answer.01 │ │ ├── input.01 │ │ └── output.01 │ ├── refs │ │ ├── r1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r3 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r4 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r5 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ └── r6 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ ├── run.sh │ └── src │ │ ├── fcmp.cpp │ │ └── wcmp.cpp ├── test-003_run-rnd │ ├── refs │ │ ├── r1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ └── r2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ ├── run.sh │ └── src │ │ └── gen.cpp ├── test-004_use-test.h │ ├── refs │ │ └── r1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ ├── run.sh │ ├── test.cpp │ ├── test.h │ └── tests │ │ ├── test-instream.cpp │ │ ├── test-join.cpp │ │ ├── test-opts.cpp │ │ ├── test-pattern.cpp │ │ ├── test-split.cpp │ │ └── test-tokenize.cpp ├── test-005_no-register │ ├── refs │ │ ├── r1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ └── r2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ ├── run.sh │ └── src │ │ └── g.cpp └── test-005_opts │ ├── files │ ├── test-auto-ensure-no-unused-opts.cpp │ └── test-suppress-auto-ensure-no-unused-opts.cpp │ ├── refs │ ├── auto-ensure-no-unused-opts │ │ ├── r1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r3 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r4 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r5 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r6 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r7 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r8 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ └── r9 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ └── suppress-auto-ensure-no-unused-opts │ │ ├── r1 │ │ ├── exit_code │ │ ├── stderr │ │ └── stdout │ │ ├── r2 │ │ ├── exit_code │ │ ├── stderr │ │ └── stdout │ │ ├── r3 │ │ ├── exit_code │ │ ├── stderr │ │ └── stdout │ │ ├── r4 │ │ ├── exit_code │ │ ├── stderr │ │ └── stdout │ │ ├── r5 │ │ ├── exit_code │ │ ├── stderr │ │ └── stdout │ │ ├── r6 │ │ ├── exit_code │ │ ├── stderr │ │ └── stdout │ │ ├── r7 │ │ ├── exit_code │ │ ├── stderr │ │ └── stdout │ │ ├── r8 │ │ ├── exit_code │ │ ├── stderr │ │ └── stdout │ │ └── r9 │ │ ├── exit_code │ │ ├── stderr │ │ └── stdout │ └── run.sh └── validators ├── bipartite-graph-validator.cpp ├── case-nval.cpp ├── ival.cpp ├── nval.cpp ├── sval.cpp ├── undirected-graph-validator.cpp ├── undirected-tree-validator.cpp └── validate-using-testset-and-group.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/Checker.cpp -------------------------------------------------------------------------------- /Generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/Generator.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/README.md -------------------------------------------------------------------------------- /Solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/Solution.cpp -------------------------------------------------------------------------------- /Validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/Validator.cpp -------------------------------------------------------------------------------- /input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/.vscode/launch.json -------------------------------------------------------------------------------- /testlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/LICENSE -------------------------------------------------------------------------------- /testlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/README.md -------------------------------------------------------------------------------- /testlib/checkers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/.gitignore -------------------------------------------------------------------------------- /testlib/checkers/acmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/acmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/caseicmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/caseicmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/casencmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/casencmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/casewcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/casewcmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/dcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/dcmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/fcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/fcmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/hcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/hcmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/icmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/icmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/lcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/lcmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/ncmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/ncmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/nyesno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/nyesno.cpp -------------------------------------------------------------------------------- /testlib/checkers/pointscmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/pointscmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/pointsinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/pointsinfo.cpp -------------------------------------------------------------------------------- /testlib/checkers/rcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/rcmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/rcmp4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/rcmp4.cpp -------------------------------------------------------------------------------- /testlib/checkers/rcmp6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/rcmp6.cpp -------------------------------------------------------------------------------- /testlib/checkers/rcmp9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/rcmp9.cpp -------------------------------------------------------------------------------- /testlib/checkers/rncmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/rncmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/uncmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/uncmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/wcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/wcmp.cpp -------------------------------------------------------------------------------- /testlib/checkers/yesno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/checkers/yesno.cpp -------------------------------------------------------------------------------- /testlib/docs/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/docs/read.me -------------------------------------------------------------------------------- /testlib/generators/bgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/generators/bgen.cpp -------------------------------------------------------------------------------- /testlib/generators/gen-array-with-opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/generators/gen-array-with-opt.cpp -------------------------------------------------------------------------------- /testlib/generators/gen-bipartite-graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/generators/gen-bipartite-graph.cpp -------------------------------------------------------------------------------- /testlib/generators/gen-rooted-tree-graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/generators/gen-rooted-tree-graph.cpp -------------------------------------------------------------------------------- /testlib/generators/gen-tree-graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/generators/gen-tree-graph.cpp -------------------------------------------------------------------------------- /testlib/generators/gs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/generators/gs.cpp -------------------------------------------------------------------------------- /testlib/generators/igen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/generators/igen.cpp -------------------------------------------------------------------------------- /testlib/generators/iwgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/generators/iwgen.cpp -------------------------------------------------------------------------------- /testlib/generators/multigen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/generators/multigen.cpp -------------------------------------------------------------------------------- /testlib/generators/sgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/generators/sgen.cpp -------------------------------------------------------------------------------- /testlib/generators/swgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/generators/swgen.cpp -------------------------------------------------------------------------------- /testlib/interactors/interactor-a-plus-b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/interactors/interactor-a-plus-b.cpp -------------------------------------------------------------------------------- /testlib/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/read.me -------------------------------------------------------------------------------- /testlib/testlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/testlib -------------------------------------------------------------------------------- /testlib/testlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/testlib.h -------------------------------------------------------------------------------- /testlib/testlib.h.gch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/testlib.h.gch -------------------------------------------------------------------------------- /testlib/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/README.md -------------------------------------------------------------------------------- /testlib/tests/lib/msvc-2022-include.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/lib/msvc-2022-include.7z -------------------------------------------------------------------------------- /testlib/tests/lib/testlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/lib/testlib.h -------------------------------------------------------------------------------- /testlib/tests/lib/windows-kit-10.0.19041.0-include.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/lib/windows-kit-10.0.19041.0-include.7z -------------------------------------------------------------------------------- /testlib/tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/run.sh -------------------------------------------------------------------------------- /testlib/tests/scripts/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/scripts/compile -------------------------------------------------------------------------------- /testlib/tests/scripts/test-ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/scripts/test-ref -------------------------------------------------------------------------------- /testlib/tests/src/tester-lcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/src/tester-lcmp.cpp -------------------------------------------------------------------------------- /testlib/tests/t.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/t.bat -------------------------------------------------------------------------------- /testlib/tests/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/t.sh -------------------------------------------------------------------------------- /testlib/tests/test-000_compile-all-cpp/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-000_compile-all-cpp/run.sh -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/unix/sval/input.01: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/unix/sval/input.02: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/unix/sval/input.03: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/unix/sval/input.04: -------------------------------------------------------------------------------- 1 | abacabazwetyuiop 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/unix/sval/input.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/files/unix/sval/input.05 -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/unix/sval/input.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/files/unix/sval/input.06 -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/unix/sval/input.07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/files/unix/sval/input.07 -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/unix/sval/input.08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/files/unix/sval/input.08 -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/unix/sval/input.09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/files/unix/sval/input.09 -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/unix/sval/input.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/files/unix/sval/input.10 -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/win/sval/input.01: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/win/sval/input.02: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/win/sval/input.03: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/win/sval/input.04: -------------------------------------------------------------------------------- 1 | abacabazwetyuiop 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/win/sval/input.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/files/win/sval/input.05 -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/win/sval/input.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/files/win/sval/input.06 -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/win/sval/input.07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/files/win/sval/input.07 -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/win/sval/input.08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/files/win/sval/input.08 -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/win/sval/input.09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/files/win/sval/input.09 -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/files/win/sval/input.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/files/win/sval/input.10 -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.01/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.01/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/refs/r-sval-input.01/stderr -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.01/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.02/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.02/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/refs/r-sval-input.02/stderr -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.02/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.03/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.03/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.03/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.04/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.04/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.04/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.05/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.05/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.05/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.06/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.06/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/refs/r-sval-input.06/stderr -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.06/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.07/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.07/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/refs/r-sval-input.07/stderr -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.07/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.08/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.08/stderr: -------------------------------------------------------------------------------- 1 | FAIL Expected EOLN (stdin, line 1) 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.08/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.09/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.09/stderr: -------------------------------------------------------------------------------- 1 | FAIL Expected EOLN (stdin, line 1) 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.09/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.10/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.10/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/refs/r-sval-input.10/stderr -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/refs/r-sval-input.10/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/run.sh -------------------------------------------------------------------------------- /testlib/tests/test-001_run-sval/src/sval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-001_run-sval/src/sval.cpp -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/files/answer.01: -------------------------------------------------------------------------------- 1 | abc 01 \%test!$ 2 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/files/input.01: -------------------------------------------------------------------------------- 1 | 1 2 3 4 5 6 2 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/files/output.01: -------------------------------------------------------------------------------- 1 | abc 01 \%test!$ 2 | 3 | me 4 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r1/exit_code: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r1/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-002_run-fcmp-wcmp/refs/r1/stderr -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r1/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r2/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r2/stderr: -------------------------------------------------------------------------------- 1 | ok 4 tokens 2 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r2/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r3/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r3/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-002_run-fcmp-wcmp/refs/r3/stderr -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r3/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r4/exit_code: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r4/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-002_run-fcmp-wcmp/refs/r4/stderr -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r4/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r5/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r5/stderr: -------------------------------------------------------------------------------- 1 | ok 3 lines 2 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r5/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r6/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r6/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-002_run-fcmp-wcmp/refs/r6/stderr -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/refs/r6/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-002_run-fcmp-wcmp/run.sh -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/src/fcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-002_run-fcmp-wcmp/src/fcmp.cpp -------------------------------------------------------------------------------- /testlib/tests/test-002_run-fcmp-wcmp/src/wcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-002_run-fcmp-wcmp/src/wcmp.cpp -------------------------------------------------------------------------------- /testlib/tests/test-003_run-rnd/refs/r1/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-003_run-rnd/refs/r1/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-003_run-rnd/refs/r1/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-003_run-rnd/refs/r1/stdout -------------------------------------------------------------------------------- /testlib/tests/test-003_run-rnd/refs/r2/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-003_run-rnd/refs/r2/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-003_run-rnd/refs/r2/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-003_run-rnd/refs/r2/stdout -------------------------------------------------------------------------------- /testlib/tests/test-003_run-rnd/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-003_run-rnd/run.sh -------------------------------------------------------------------------------- /testlib/tests/test-003_run-rnd/src/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-003_run-rnd/src/gen.cpp -------------------------------------------------------------------------------- /testlib/tests/test-004_use-test.h/refs/r1/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-004_use-test.h/refs/r1/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-004_use-test.h/refs/r1/stderr -------------------------------------------------------------------------------- /testlib/tests/test-004_use-test.h/refs/r1/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-004_use-test.h/refs/r1/stdout -------------------------------------------------------------------------------- /testlib/tests/test-004_use-test.h/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-004_use-test.h/run.sh -------------------------------------------------------------------------------- /testlib/tests/test-004_use-test.h/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-004_use-test.h/test.cpp -------------------------------------------------------------------------------- /testlib/tests/test-004_use-test.h/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-004_use-test.h/test.h -------------------------------------------------------------------------------- /testlib/tests/test-004_use-test.h/tests/test-instream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-004_use-test.h/tests/test-instream.cpp -------------------------------------------------------------------------------- /testlib/tests/test-004_use-test.h/tests/test-join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-004_use-test.h/tests/test-join.cpp -------------------------------------------------------------------------------- /testlib/tests/test-004_use-test.h/tests/test-opts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-004_use-test.h/tests/test-opts.cpp -------------------------------------------------------------------------------- /testlib/tests/test-004_use-test.h/tests/test-pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-004_use-test.h/tests/test-pattern.cpp -------------------------------------------------------------------------------- /testlib/tests/test-004_use-test.h/tests/test-split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-004_use-test.h/tests/test-split.cpp -------------------------------------------------------------------------------- /testlib/tests/test-004_use-test.h/tests/test-tokenize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-004_use-test.h/tests/test-tokenize.cpp -------------------------------------------------------------------------------- /testlib/tests/test-005_no-register/refs/r1/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_no-register/refs/r1/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_no-register/refs/r1/stderr -------------------------------------------------------------------------------- /testlib/tests/test-005_no-register/refs/r1/stdout: -------------------------------------------------------------------------------- 1 | 10 2 | 3 7 10 1 9 5 4 8 6 2 3 | -------------------------------------------------------------------------------- /testlib/tests/test-005_no-register/refs/r2/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_no-register/refs/r2/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_no-register/refs/r2/stderr -------------------------------------------------------------------------------- /testlib/tests/test-005_no-register/refs/r2/stdout: -------------------------------------------------------------------------------- 1 | 10 2 | 3 7 10 1 9 5 4 8 6 2 3 | -------------------------------------------------------------------------------- /testlib/tests/test-005_no-register/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_no-register/run.sh -------------------------------------------------------------------------------- /testlib/tests/test-005_no-register/src/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_no-register/src/g.cpp -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/files/test-auto-ensure-no-unused-opts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/files/test-auto-ensure-no-unused-opts.cpp -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/files/test-suppress-auto-ensure-no-unused-opts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/files/test-suppress-auto-ensure-no-unused-opts.cpp -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r1/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r1/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unknown key 'test-count' 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r1/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r2/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r2/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unknown key 'sum-n' 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r2/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r3/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r3/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unused key 'min-val' 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r3/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r3/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r4/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r4/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unused key 'max-val' 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r4/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r4/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r5/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r5/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unused key 'min-length' 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r5/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r5/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r6/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r6/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unused key 'bias-value' 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r6/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r6/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r7/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r7/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r7/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r7/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r8/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r8/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r8/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r8/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r9/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r9/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r9/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r9/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r1/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r1/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unknown key 'test-count' 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r1/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r2/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r2/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unknown key 'sum-n' 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r2/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r3/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r3/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r3/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r3/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r4/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r4/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r4/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r4/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r5/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r5/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r5/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r5/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r6/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r6/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r6/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r6/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r7/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r7/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r7/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r7/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r8/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r8/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r8/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r8/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r9/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r9/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r9/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r9/stdout -------------------------------------------------------------------------------- /testlib/tests/test-005_opts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/tests/test-005_opts/run.sh -------------------------------------------------------------------------------- /testlib/validators/bipartite-graph-validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/validators/bipartite-graph-validator.cpp -------------------------------------------------------------------------------- /testlib/validators/case-nval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/validators/case-nval.cpp -------------------------------------------------------------------------------- /testlib/validators/ival.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/validators/ival.cpp -------------------------------------------------------------------------------- /testlib/validators/nval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/validators/nval.cpp -------------------------------------------------------------------------------- /testlib/validators/sval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/validators/sval.cpp -------------------------------------------------------------------------------- /testlib/validators/undirected-graph-validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/validators/undirected-graph-validator.cpp -------------------------------------------------------------------------------- /testlib/validators/undirected-tree-validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/validators/undirected-tree-validator.cpp -------------------------------------------------------------------------------- /testlib/validators/validate-using-testset-and-group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7oSkaaa/Codeforces-Polygon-Template/HEAD/testlib/validators/validate-using-testset-and-group.cpp --------------------------------------------------------------------------------