题链 分析 如果没有硬石头,显然裸的二分图匹配 加上硬石子,相当于分段后跑二分图匹配即可 #include<bits/stdc++.h> #define pb push_back using namespace std; const int N=105,M=10005; int n,m,id1[N] ...
分类:
其他好文 时间:
2021-06-20 17:41:41
阅读次数:
0
C语言 #define NULL ((void *)0) // Definition for singly-linked list. struct ListNode { int val; struct ListNode *next; }; struct ListNode *getIntersecti ...
分类:
编程语言 时间:
2021-06-19 19:18:10
阅读次数:
0
#include <bits/stdc++.h> using namespace std; #define rep(i,a,b) for(int i=a;i<b;i++) #define all(x) x.begin(),x.end() #define pb(x) push_back(x) #def ...
分类:
其他好文 时间:
2021-06-19 19:16:51
阅读次数:
0
https://ac.nowcoder.com/acm/contest/11212/E #include<bits/stdc++.h> using namespace std; // define a point class to store a point class Point { public ...
分类:
其他好文 时间:
2021-06-19 18:50:57
阅读次数:
0
任务三: 1、在屏幕上正确输出了按分数由高→低排序的信息,且生成了文本文件file3.dat。2、用记事本程序打开文件file3.dat,里面的数据信息是正确的,并且是直观可读的。 #include<stdio.h> #include<stdlib.h> #define N 10 typedef s ...
分类:
其他好文 时间:
2021-06-19 18:45:07
阅读次数:
0
#define MULTICAST_GROUP "234.1.4.9" 部分永久的组播地址: 224.0.0.1 子网中的所有系统和主机 224.0.0.2 子网中的所有路由器 224.0.0.4 DVMRP路由器 224.0.0.5 所有OSPF路由器 224.0.0.6 OSPF指定路由器 22 ...
分类:
其他好文 时间:
2021-06-18 20:06:14
阅读次数:
0
// 从文本数据文件file1.dat中读入数据,按成绩从高到低排序,将排序结果输出到屏幕上,同时以文本方式存入文件file3.dat中。 #include <stdio.h> #include <stdlib.h> #define N 10 // 定义一个结构体类型STU typedef stru ...
分类:
其他好文 时间:
2021-06-18 19:29:15
阅读次数:
0
实验三 // 从文本数据文件file1.dat中读入数据,按成绩从高到低排序,将排序结果输出到屏幕上,同时以文本方式存入文件file3.dat中。 #include <stdio.h> #include <stdlib.h> #define N 10 // 定义一个结构体类型STU typedef ...
分类:
其他好文 时间:
2021-06-18 19:18:23
阅读次数:
0
#include <stdio.h> #include <stdlib.h> #define N 10 typedef struct student { int num; char name[20]; int score; }STU; int main() { FILE *fin; STU st[N ...
分类:
其他好文 时间:
2021-06-18 19:14:39
阅读次数:
0
实验三 实验四 // 从文本数据文件file1.dat中读入数据,按成绩从高到低排序,将排序结果输出到屏幕上,同时以文本方式存入文件file3.dat中。 #include <stdio.h> #include <stdlib.h> #define N 10 // 定义一个结构体类型STU type ...
分类:
其他好文 时间:
2021-06-18 19:11:25
阅读次数:
0