主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
freewaterzws
2023年3月20日 15:58
DFS回溯,通过50%
P1628
回复 1
|
赞 0
|
浏览 2.6k
#include <queue> #include <cstdio> #include <vector> using namespace std; struct State { int x,y; int count; State() { count = 0; x = 0; y = 0; } }; int moves[8][2] = {{2, 1}, {1, 2}, {-1, 2}, {-2,1}, {-2, -1}, {-1, -2...
sherpahu
2021年3月15日 22:02
奇怪的题目
P1628
回复 0
|
赞 2
|
浏览 7.9k
#include <bits/stdc++.h> using namespace std; int main(){ int n,m; while(cin>>n>>m){ if(n==1&&m==1)puts("Y"); else if(n==1||m==1)puts("N"); else if(n%2&&m%2)puts("N"); else puts("Y"); } return 0; }
hrcarryu
2021年2月28日 23:16
DFS遍历,未通过,卡在5x5棋盘
P1628
回复 3
|
赞 0
|
浏览 9.1k
#include<iostream> #include<algorithm> #include<string.h> using namespace std; int flag[10][10]; int N, M, total, res; int locX[4] = {1,-1,0,0}; int locY[4] = {0,0,1,-1}; void DFS(int n, int m, int cnt){ if(res == 1) return; if(c...
题目
上交2018 Problem C
题解数量
3
发布题解
热门题解
1
奇怪的题目
2
DFS遍历,未通过,卡在5x5棋盘
3
DFS回溯,通过50%