add lanqiao216
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
// 蓝桥3820 混境之地
|
||||
#include<bits/stdc++.h>
|
||||
using namespace std;
|
||||
using ll = long long;
|
||||
@@ -35,7 +36,7 @@ bool dfs(int x, int y, int t){
|
||||
return dp[x][y][t] = false;
|
||||
}
|
||||
int main(){
|
||||
memset(dp, -1, sizeof dp);
|
||||
memset(dp, -1, sizeof dp); // 记忆化搜索
|
||||
cin >> n >> m >> k;
|
||||
cin >> sx >> sy >> fx >> fy;
|
||||
for(int i = 1; i <= n; i++){
|
||||
|
||||
Reference in New Issue
Block a user