Contest3276 - 【深搜】走迷宫 (黄)

2024-10-20 09:00:00
3333-10-20 13:00:00
运行中 公开 当前时间:2024-11-14 12:11:33

信息与公告

#include <bits/stdc++.h>
using namespace std;
#define ll long long

// 选k个数字加起来,判断这个和是不是素数
bool sign[...][...];  // 标记数组,表示你当前选择了哪些位置的元素

type dfs(int i,......){  // 第i个点 ,  ......携带的信息
    if(边界条件)
    {
        return 结果
    }

    for(遍历可选项){   // 遍历可选项(路径)
        type a; // 一些操作
        if(判断合法性){// 判断这个选项能不能选
            // 一些操作
            a = dfs();  // 返回值可有可无
            // 一些操作
        }
    }
    return type;  // 默认返回值
   
}


int main(){
   
    return 0;
}