CSES - Datatähti 2023 alku - Results
Submission details
Task:Ruudukko
Sender:Esinko
Submission time:2022-11-03 10:52:22 +0200
Language:Node.js
Status:READY
Result:28
Feedback
groupverdictscore
#1ACCEPTED28
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.11 s1, 2, 3details
#2ACCEPTED0.11 s1, 2, 3details
#3ACCEPTED0.11 s1, 2, 3details
#4ACCEPTED0.24 s2, 3details
#5--2, 3details
#6--2, 3details
#7--3details
#8--3details
#9--3details

Code

// Annetaan taulukko
// Kokonaisluku leveys/korkes - leveys/korkeys toiseen
// Ruudukossa reitti siirtyy ruudusta pysty tai vaakasuunnassa
// ruutuun jossa on pienempi luku kuin nykyisessä ruudussa
// Reitissä voi olla van yksi ruutu, ruutujen ei tarvitse olla vierekkäisiä
// Kuinka monta reittiä
// Anna jakojäännös luvulla 10^9+7
let lines = []
let expectedAmount = null
function pathFind(startX, startY, visited = [], isChain) {
// Look for any value in the same line
let pathCount = !isChain ? 1 : 0
// console.log("#", startX, startY, visited)
for (let i = startX; i < expectedAmount; i++) { // Right
if (visited.includes(`${i}-${startY}`)) continue
if (lines[startY][startX] > lines[startY][i]) {
// console.log(" found", [startX, startY], [i, startY], !isChain ? "(root)" : "(child)")
// This is a path
pathCount += 1
// Continue the path
const nVisited = visited.slice(0)
nVisited.push(`${i}-${startY}`)
pathCount += pathFind(i, startY, nVisited, true)
}
}
for (let i = startX; i > -1; i--) { // Left
if (visited.includes(`${i}-${startY}`)) continue
if (lines[startY][startX] > lines[startY][i]) {
// console.log(" found", [startX, startY], [i, startY], !isChain ? "(root)" : "(child)")
// This is a path
pathCount += 1
// Continue the path
const nVisited = visited.slice(0)
nVisited.push(`${i}-${startY}`)
pathCount += pathFind(i, startY, nVisited, true)
}
}
// Look for a path below or above
for (let i = startY; i < expectedAmount; i++) { // Down
if (visited.includes(`${startX}-${i}`)) continue
if (lines[startY][startX] > lines[i][startX]) {
// console.log(" found", [startX, startY], [startX, i], !isChain ? "(root)" : "(child)")
// This is a path
pathCount += 1
// Continue the path
const nVisited = visited.slice(0)
nVisited.push(`${startX}-${i}`)
pathCount += pathFind(startX, i, nVisited, true)
}
}
for (let i = startY; i > -1; i--) { // Up
if (visited.includes(`${startX}-${i}`)) continue
if (lines[startY][startX] > lines[i][startX]) {
// console.log(" found", [startX, startY], [startX, i], !isChain ? "(root)" : "(child)")
// This is a path
pathCount += 1
// Continue the path
const nVisited = visited.slice(0)
nVisited.push(`${startX}-${i}`)
pathCount += pathFind(startX, i, nVisited, true)
}
}
// console.log("!", visited.map(() => "#").join(""), pathCount, [startX, startY])
//console.log(isChain ? " !->" : "->", pathCount, [startX, startY])
return pathCount
}
const { createInterface } = require("readline")
const interface = createInterface({
input: process.stdin,
terminal: false
})
interface.on("line", (data) => {
const str = data.toString().trimEnd()
// Get line count
if (str.split(" ").length === 1) {
expectedAmount = parseInt(str)
return
}
// Push to memory
lines.push(str.split(" ").map(Number))
if (lines.length === expectedAmount) {
// Logic
// Test every item of every row for paths
let pathsCount = 0
for (let i = 0; i < lines.length; i++) {
for (let ii = 0; ii < lines[i].length; ii++) {
// console.log(ii, i)
const paths = pathFind(ii, i)
pathsCount += paths
// console.log("+", paths, "\n")
}
}
const answer = pathsCount % ((10**9) + 7)
console.log(answer)
process.exit()
}
})

Test details

Test 1

Group: 1, 2, 3

Verdict: ACCEPTED

input
3
1 1 1
1 1 1
1 1 1

correct output
9

user output
9

Test 2

Group: 1, 2, 3

Verdict: ACCEPTED

input
3
1 2 3
6 5 4
7 8 9

correct output
135

user output
135

Test 3

Group: 1, 2, 3

Verdict: ACCEPTED

input
3
7 8 1
4 5 4
3 9 6

correct output
57

user output
57

Test 4

Group: 2, 3

Verdict: ACCEPTED

input
100
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
10000

user output
10000

Test 5

Group: 2, 3

Verdict:

input
100
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

correct output
187458477

user output
(empty)

Test 6

Group: 2, 3

Verdict:

input
100
2995 8734 1018 2513 7971 5063 ...

correct output
964692694

user output
(empty)

Test 7

Group: 3

Verdict:

input
1000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
1000000

user output
(empty)

Test 8

Group: 3

Verdict:

input
1000
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

correct output
229147081

user output
(empty)

Test 9

Group: 3

Verdict:

input
1000
520283 805991 492643 75254 527...

correct output
951147313

user output
(empty)