A. Architecture 比较行列最大值相同则possible 不同则impossible #include<iostream> #include<algorithm> #include<cmath> #include<cstdio> using namespace std; int main ...
分类:
其他好文 时间:
2020-03-18 21:42:17
阅读次数:
71
前三题随便写,D题是一道dfs的水题,但当时没有找到规律,直接卡到结束 A - Kth Term / Time Limit: 2 sec / Memory Limit: 1024 MB Score : 100100 points Problem Statement Print the KK-th e ...
分类:
其他好文 时间:
2020-03-18 20:19:45
阅读次数:
68
This is a the real user review of the Autel MaxiIM IM608, a fantastic diagnostic and programming system for universal vehicles. Credit to all contribu ...
分类:
数据库 时间:
2020-03-18 20:13:29
阅读次数:
73
论算法优化的重要性 要有分析算法时间复杂度的潜意识,慢慢培养。 别总是上来暴力,还有可怕的两层循环2333qwq The Bureau for Artificial Problems in Competitions wants you to solve the following problem: ...
分类:
其他好文 时间:
2020-03-17 21:02:11
阅读次数:
70
2020-3-15比赛解题报告+2020-3-8—2020-3-15的补题报告 2020-3-15比赛题解 训练联盟周赛Preliminaries for Benelux Algorithm Programming Contest 2019 A建筑(模拟) 耗时:3ms 244KB 建筑 你哥哥在最 ...
分类:
其他好文 时间:
2020-03-16 23:43:39
阅读次数:
79
A Kth Term 题意:输出数组对应坐标的值,注意,坐标是从1开始的 题解:用数组存起来就行 代码: #include <bits/stdc++.h> using namespace std; typedef long long ll; int main(){ int num[]={0,1, 1 ...
分类:
其他好文 时间:
2020-03-16 21:57:54
阅读次数:
62
上课上到一半被拉出来打这场。结果被教育了。 "题目链接" 做题顺序: A(AC) B(WA) E(未交) C(AC) E(WA) D(AC) B(AC) E(WA) A:上来直接把下标写成$n$和$n+1$,结果 $WA$ 两次,直接心态爆炸 代码就不放了。 B 题意:$n \times m$ 的棋 ...
分类:
其他好文 时间:
2020-03-16 12:44:28
阅读次数:
65
结对编程 一、实验目标: 1)体验敏捷开发中的两人合作。 2)进一步提高个人编程技巧与实践。 二 、实验内容: 1)根据以下问题描述,练习结对编程(pair programming)实践; 2)要求学生两人一组,自由组合。每组使用一台计算机,二人共同编码,完成实验要求。 3)要求在结对编程工作期间, ...
分类:
其他好文 时间:
2020-03-15 22:05:43
阅读次数:
59
// Definition const Endo = run => ({ run, concat: other => Endo(x => other.run(run(x))) }); Endo.empty = () => Endo(x => x); // Ex1: // const classToC ...
分类:
其他好文 时间:
2020-03-15 22:00:48
阅读次数:
53
一.解题 1.Greetings! 题意:字符串中的e ac代码: #include<iostream>#include<string>using namespace std;int main(){string s;int i,n,count=0,w;cin>>s;if(s=="Later!"){c ...
分类:
其他好文 时间:
2020-03-15 21:55:00
阅读次数:
63