摘要:
#include<iostream> #include<algorithm> #include<string> #define min(a,b) ((a)<(b)?(a):(b)) using namespace std; int input[2005][2005]; int X,Y; int ma
阅读全文
posted @ 2020-07-05 14:05
forwhat00
阅读(119)
推荐(0)
摘要:
#include<iostream> #define INF 200000 using namespace std; int max(int a,int b){return a>b?a:b;} int min(int a,int b){return a<b?a:b;} int map[1002][1
阅读全文
posted @ 2020-07-05 14:03
forwhat00
阅读(98)
推荐(0)
摘要:
#include<iostream> #include<string> #include<map> #include<vector> #define INF 999999 using namespace std; int min(int a,int b){return a<b?a:b;} int N
阅读全文
posted @ 2020-07-05 14:02
forwhat00
阅读(84)
推荐(0)