摘要:
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 阅读全文
摘要:
有向图G中,以顶点v为起点的弧的数目称为v的出度,记做deg+(v);以顶点v为终点的弧的数目称为v的入度,记做deg-(v)。 如果在有向图G中,有一条<u,v>有向道路,则v称为u可达的,或者说,从u可达v。 什么是强连通?强连通其实就是指图中有两点u,v。使得能够找到有向路径从u到v并且也能够 阅读全文
摘要:
6B-Binary Vector(线性独立,逆元) #include <bits/stdc++.h> using namespace std; #define ll long long using namespace std; const int mod = 1e9+7;/// 998244353; 阅读全文
摘要:
牧场的安排 :将每行输入的数字转换为十进制,然后预处理出所有满足题意的状态并存储于 sta ,再处理出单独一行时候的方案数并存储于 dp1,sta 枚举第 i 行的状态,判断第 j = i-1行的状态,并更新dpi , j ,最后累和即可 #include <bits/stdc++.h> using 阅读全文
摘要:
【单选题】计算机系统中,计算机软件不包括以下哪种: D A、系统软件B、支撑软件C、应用软件D、杀毒软件2【单选题】计算机系统的层次结构,按照顺序应该是: CA、操作人员、系统软件、支撑软件、应用软件、硬件系统B、操作人员、支撑软件、应用软件、系统软件、硬件系统C、操作人员、应用软件、支撑软件、系统 阅读全文
摘要:
一、单选题 (题数: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 阅读全文
摘要:
https://codeforces.com/contest/1359/problem/D #include <iostream> #include <algorithm> #include <cstring> #include <string> #include <vector> #include 阅读全文
摘要:
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 阅读全文
摘要:
A. Orac and Factors 题意:每次 N 加上N的最小质因子,执行M次 题解:暴力模拟。先判断是不是质数,来减少时间,然后在M次执行中,N可能会成为偶数X,那么,接下来的质因子都为2,那么就是X+=2*T,T代表剩余多少次操作 #include <iostream> #include 阅读全文
摘要:
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 阅读全文