摘要:
时间:2020.5.17-2020.5.23 学习所花时间(包括上课):平均每天7-8个小时 代码量:大概1k+行 了解到的知识点:学习沙盒测试,学习Monaco 模块在线编辑器等相关知识及其实现。 阅读全文
摘要:
团队项目第二阶段冲刺第五天: 实现评测功能: import * as TypeORM from "typeorm"; import Model from "./common"; declare var stdoj, ErrorMessage: any; import User from "./use 阅读全文
摘要:
内容参考书籍《算法竞赛入门到进阶》 先看一道经典题:poj1163 http://poj.org/problem?id=1163 如果此题按照从上往下的方法计算,每走一步下一步就有2种选择,其复杂度为2n 那么我们从下往上算,下面给出dfs代码: int dfs(int i,int j) { if 阅读全文