上一页 1 2 3 4 5 6 ··· 21 下一页
摘要: HDU - 2874 Connections between cities 题面: After World War X, a lot of cities have been seriously damaged, and we need to rebuild those cities. However 阅读全文
posted @ 2020-08-03 09:50 __MEET 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 有向图G中,以顶点v为起点的弧的数目称为v的出度,记做deg+(v);以顶点v为终点的弧的数目称为v的入度,记做deg-(v)。 如果在有向图G中,有一条<u,v>有向道路,则v称为u可达的,或者说,从u可达v。 什么是强连通?强连通其实就是指图中有两点u,v。使得能够找到有向路径从u到v并且也能够 阅读全文
posted @ 2020-08-01 09:42 __MEET 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 6B-Binary Vector(线性独立,逆元) #include <bits/stdc++.h> using namespace std; #define ll long long using namespace std; const int mod = 1e9+7;/// 998244353; 阅读全文
posted @ 2020-07-28 15:47 __MEET 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 牧场的安排 :将每行输入的数字转换为十进制,然后预处理出所有满足题意的状态并存储于 sta ,再处理出单独一行时候的方案数并存储于 dp1,sta 枚举第 i 行的状态,判断第 j = i-1行的状态,并更新dpi , j ,最后累和即可 #include <bits/stdc++.h> using 阅读全文
posted @ 2020-07-28 12:33 __MEET 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 【单选题】计算机系统中,计算机软件不包括以下哪种: D A、系统软件B、支撑软件C、应用软件D、杀毒软件2【单选题】计算机系统的层次结构,按照顺序应该是: CA、操作人员、系统软件、支撑软件、应用软件、硬件系统B、操作人员、支撑软件、应用软件、系统软件、硬件系统C、操作人员、应用软件、支撑软件、系统 阅读全文
posted @ 2020-07-09 06:52 __MEET 阅读(2003) 评论(0) 推荐(0) 编辑
摘要: 一、单选题 (题数:16,共 32.0 分) 1 Java属于以下哪种语言?(2.0分) A、以上都不对 B、高级语言 C、汇编语言 D、机器语言 我的答案:B 2 System.out.println(5 + 5 + "5 + 5");的结果是(); A、5555 B、105 + 5 C、10+5 阅读全文
posted @ 2020-06-26 20:14 __MEET 阅读(3267) 评论(0) 推荐(0) 编辑
摘要: https://codeforces.com/contest/1359/problem/D #include <iostream> #include <algorithm> #include <cstring> #include <string> #include <vector> #include 阅读全文
posted @ 2020-05-30 01:08 __MEET 阅读(70) 评论(0) 推荐(0) 编辑
摘要: D - Sonya and Matrix Since Sonya has just learned the basics of matrices, she decided to play with them a little bit. Sonya imagined a new type of mat 阅读全文
posted @ 2020-05-28 12:20 __MEET 阅读(174) 评论(0) 推荐(0) 编辑
摘要: A. Orac and Factors 题意:每次 N 加上N的最小质因子,执行M次 题解:暴力模拟。先判断是不是质数,来减少时间,然后在M次执行中,N可能会成为偶数X,那么,接下来的质因子都为2,那么就是X+=2*T,T代表剩余多少次操作 #include <iostream> #include 阅读全文
posted @ 2020-05-13 10:23 __MEET 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Vasya is an administrator of a public page of organization "Mouse and keyboard" and his everyday duty is to publish news from the world of competitive 阅读全文
posted @ 2020-05-11 18:55 __MEET 阅读(166) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 21 下一页