Hi competitive programmers and especially who writes problem solutions in JavaScript. I'm amoung them, yes I'm a little crazy too;)
I've already participated in two contests. In first for div 2 I've managed to solve 2 problems, but in next for div 3 I've just solved 1 and was a little disappointed about that. I decided to skip next one but curriousity took over me and I've looked to first problem in such an epic contest Educational Codeforces Round 146 (Rated for Div. 2). https://mirror.codeforces.com/contest/1814/problem/A after some thinking about and scratching some expressions on papare i saw a math model of solution and it looked like to transfer 2 bits over wire and i jumped in contest room but failed( My assumptions were wrong For JavaScript competitive programmers _
const { CodeforcesTester } = require('../lib/codeforces-tester');
// test input/output data
const tester = new CodeforcesTester()
.inputData(`
2
1 2
3 5
`).outputData(`
3
8
`)
// execute script: node Template.js
// This template can run code in both envs: JavaScript V8 4.8.0, Node.js 12.16.3
// NOTE: Always use Node.js 12.16.3 because it supports ES6 features and BigInt which sometimes really important
// copy and send code with solution to https://mirror.codeforces.com/ from HERE below (for engine JavaScript V8 4.8.0 IMPORTANT to add at start of script: "use strict";)
"use strict";
class CodeforcesIO {
/**
* @param solve a callback function which provides functionality to work with input/output data
* ```js
* new CodeforcesIO((readline, print) => {
* const echo = readline()
* print(echo)
* })
* ```
*/
constructor(solve) {
this.lines = []
this.lineNum = 0
this.result = []
if (typeof tester !== 'undefined') { // test input/output data are set
solve(tester.readline.bind(tester), tester.print.bind(tester));
return
}
if (typeof process !== 'undefined') { // for Node.js 12.16.3
require('readline').createInterface({
input: process.stdin
}).on('line', (line) => {
this.lines.push(line);
}).on('close', () => {
solve(this.readline.bind(this), this.print.bind(this));
process.stdout.write(this.result.join('\n'));
})
return;
}
solve(readline, print); // readline, print are defined globally in JavaScript V8 4.8.0
}
readline() {
return this.lines[this.lineNum++]
}
print(res) {
this.result.push(res);
}
}
// your solution starts here. Good luck!
const solution = (a, b) => {
return a + b
}
new CodeforcesIO((readline, print) => {
const t = readline() // first line of input usually gives the no. of test cases,i.e, the no. of lines ahead.
for (let i = 0; i < t; i++) {
const lineArgs = readline().split(' ')
print(solution(+lineArgs[0], +lineArgs[1]))
}
})
_
class CodeforcesTester {
_inputGenerator
_outputGenerator
* _generateReadline(testCases) {
const arr = testCases.split('\n').filter(s => s);
const lastIndex = arr.length - 1
for (let i = 0; i < lastIndex; i++) {
yield arr[i]
}
return arr[lastIndex]
}
/**
* @param {string} inputFileContent copy input data from problem
* @return {CodeforcesTester}
*/
inputData(inputFileContent) {
this._inputGenerator = this._generateReadline(inputFileContent);
return this
}
/**
* @param {string} outputFileContent copy output data from problem
* @return {CodeforcesTester}
*/
outputData(outputFileContent) {
this._outputGenerator = this._generateReadline(outputFileContent);
return this
}
readline() {
if (this._inputGenerator) return this._inputGenerator.next().value
throw new Error('Input data was not set')
}
print(str) {
if (this._outputGenerator) {
const nextValue = this._outputGenerator.next().value
if (str != nextValue) throw new Error(str + ' <-- Incorrect output line, should be --> ' + nextValue)
}
console.log(str)
}
}
module.exports = { CodeforcesTester };
_