CSES - Datatähti 2023 alku - Results
Submission details
Task:Ruudukko
Sender:Esinko
Submission time:2022-11-03 09:14:23 +0200
Language:Node.js
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.10 s1, 2, 3details
#20.10 s1, 2, 3details
#30.10 s1, 2, 3details
#40.10 s2, 3details
#50.11 s2, 3details
#60.11 s2, 3details
#70.19 s3details
#80.28 s3details
#90.28 s3details

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 ? 0 : 1
    
    // 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])
    return pathCount
}

process.stdin.on("data", (data) => {
    const str = data.toString().trimEnd()

    // Get line count
    if (str.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:

input
3
1 1 1
1 1 1
1 1 1

correct output
9

user output
(empty)

Test 2

Group: 1, 2, 3

Verdict:

input
3
1 2 3
6 5 4
7 8 9

correct output
135

user output
(empty)

Test 3

Group: 1, 2, 3

Verdict:

input
3
7 8 1
4 5 4
3 9 6

correct output
57

user output
(empty)

Test 4

Group: 2, 3

Verdict:

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

correct output
10000

user output
(empty)

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)