摘要:
简介 使用匈牙利算法进行匹配 code #include <stdio.h> #include <string.h> #include <stdlib.h> #include <limits.h> #include <math.h> #include <algorithm> #include <ve 阅读全文
摘要:
简介 简单题, 但是作者写的很巧妙, 参考答案. code #include <stdio.h> #include <string.h> int main(void) { char str[1000]={0},temp[1000]={0}; while(gets(str)) { int i,j,k= 阅读全文
摘要:
简介 比较好的动态规划的题目. code import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); while 阅读全文
摘要:
简介 多线程的同步是所有的公司都会使用的. 先将各种语言的放上来 code #include <iostream> #include <thread> #include <mutex> #include <string> using namespace std; string g; mutex mt 阅读全文
摘要:
简介 找规律, 而不是盲目转弯, 这样太慢. code 参考了题解 #include <iostream> #include <vector> using namespace std; int a[101][101]={0}; int main() { int n; vector<int> b; w 阅读全文
摘要:
简介 使用回溯 + 暴力 code #include <iostream> #include <string> #include <map> #include <vector> using namespace std; bool flag = false; char v[4]={'+', '-', 阅读全文
摘要:
简介 使用回溯算法. 其实回溯算法属于暴力算法. 进行一定的减枝算法即可. 这里要使用弱检查, 全局flag 进行退出. code #include <iostream> #include <vector> #include <set> #include <map> using namespace 阅读全文