You are viewing a single comment's thread. Return to all comments →
I tried a JavaScript example (NodeJS).
It works locally (node6) but Hacker Rank keeps timing out.
'use strict'; // .... function main() { const nmq = readLine().split(' '); const n = parseInt(nmq[0], 10); const m = parseInt(nmq[1], 10); const q = parseInt(nmq[2], 10); const a = readLine().split(' ').map(aTemp => parseInt(aTemp, 10)); const b = readLine().split(' ').map(bTemp => parseInt(bTemp, 10)); const matrix = []; for (let qItr = 0; qItr < q; qItr++) { const r1C1R2C2 = readLine().split(' '); const r1 = parseInt(r1C1R2C2[0], 10); const c1 = parseInt(r1C1R2C2[1], 10); const r2 = parseInt(r1C1R2C2[2], 10); const c2 = parseInt(r1C1R2C2[3], 10); matrix.push(/* SOME STUFF */); } return testResolver(matrix, a, b); } function testResolver(matrix, a, b){ return matrix.map(({m1, m2}, index) => { const queriedSetObj = {}; for (let p1 = m1.xPos; p1 <= m2.xPos; p1++) { for (let p2 = m1.yPos; p2 <= m2.yPos; p2++) { const gcd = greatestCommonDenominator(a[p1], b[p2]); if (!(gcd in queriedSetObj)) { queriedSetObj[gcd] = gcd; } } } const result = Object.keys(queriedSetObj).length; console.log(result); return result; }); }
Kept running out of memory locally; but eventually the above works.
Seems like cookies are disabled on this browser, please enable them to open this website
GCD Matrix
You are viewing a single comment's thread. Return to all comments →
I tried a JavaScript example (NodeJS).
It works locally (node6) but Hacker Rank keeps timing out.
Kept running out of memory locally; but eventually the above works.