表
创建表
comment是添加一个注释 语法:
说明: field 表示列名 datatype 表示列的类型 character set 字符集,如果没有指定字符集,则以所在数据库的字符集为准 collate 校验规则,如果没有指定校验规则,则…
题目 思路
本思路参考博客AcWing 471. 棋盘 - AcWing 约束方程: 代码
#include <iostream>
#include <cstring>
#include <algorithm>using namespace std;const int N 110, INF 0x3f3f3f3f;
int g[N][N], n, m, dist[N][N];
int dx[4] {-1…