const express =require('express')const bodyParser =require('body-parser')const request =require('request')const app =express()constPORT=5008app.use(bodyParser.json())app.get('/',(req,res)=>{res.send('Server is running!')})app.listen(PORT,()=>{console.log(`Server is running on localhost:${PORT}`);})
题目链接
题目大意
n 行 m 列 的一个矩阵,每行有m - 1条边,每列有 n - 1 条边。 问一共走 k 条边,能不能从 (1, 1),走到(n, m),要求该路径上&am…