| Task: | Ruudukko | 
| Sender: | Esinko | 
| Submission time: | 2022-11-03 09:14:23 +0200 | 
| Language: | Node.js | 
| Status: | READY | 
| Result: | 0 | 
| group | verdict | score | 
|---|---|---|
| #1 | WRONG ANSWER | 0 | 
| #2 | WRONG ANSWER | 0 | 
| #3 | WRONG ANSWER | 0 | 
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.10 s | 1, 2, 3 | details | 
| #2 | WRONG ANSWER | 0.10 s | 1, 2, 3 | details | 
| #3 | WRONG ANSWER | 0.10 s | 1, 2, 3 | details | 
| #4 | WRONG ANSWER | 0.10 s | 2, 3 | details | 
| #5 | WRONG ANSWER | 0.11 s | 2, 3 | details | 
| #6 | WRONG ANSWER | 0.11 s | 2, 3 | details | 
| #7 | WRONG ANSWER | 0.19 s | 3 | details | 
| #8 | WRONG ANSWER | 0.28 s | 3 | details | 
| #9 | WRONG ANSWER | 0.28 s | 3 | details | 
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: WRONG ANSWER
| input | 
|---|
| 3 1 1 1 1 1 1 1 1 1  | 
| correct output | 
|---|
| 9 | 
| user output | 
|---|
| (empty) | 
Test 2
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input | 
|---|
| 3 1 2 3 6 5 4 7 8 9  | 
| correct output | 
|---|
| 135 | 
| user output | 
|---|
| (empty) | 
Test 3
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input | 
|---|
| 3 7 8 1 4 5 4 3 9 6  | 
| correct output | 
|---|
| 57 | 
| user output | 
|---|
| (empty) | 
Test 4
Group: 2, 3
Verdict: WRONG ANSWER
| 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: WRONG ANSWER
| 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: WRONG ANSWER
| input | 
|---|
| 100 2995 8734 1018 2513 7971 5063 ...  | 
| correct output | 
|---|
| 964692694 | 
| user output | 
|---|
| (empty) | 
Test 7
Group: 3
Verdict: WRONG ANSWER
| 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: WRONG ANSWER
| 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: WRONG ANSWER
| input | 
|---|
| 1000 520283 805991 492643 75254 527...  | 
| correct output | 
|---|
| 951147313 | 
| user output | 
|---|
| (empty) | 
