using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
分类:
其他好文 时间:
2021-06-02 19:20:50
阅读次数:
0
一、结果呈现1. 界面设计窗体界面设计:两个label标签(一个显示题目,一个显示正确率),一个文本框textBox(输入答案),一个列表框listBox(保存做过的题目)。 2. 运行结果呈现 复制一下啊 using System; using System.Collections.Generic ...
分类:
其他好文 时间:
2021-06-02 19:20:03
阅读次数:
0
题目 Atcoder 思路 代码 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 100010; int n, w[4][N], to[N], st[N]; ...
分类:
其他好文 时间:
2021-06-02 15:31:22
阅读次数:
0
题目 Atcoder 思路 代码 #include <iostream> #include <algorithm> #include <cstring> using namespace std; const int N = 100010, M = N << 1; int n, m; int h[N] ...
分类:
其他好文 时间:
2021-06-02 15:30:41
阅读次数:
0
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Reflection; using System.Collections; using System. ...
A good problem that helps understanding sliding window algorithm :3 ...
分类:
其他好文 时间:
2021-06-02 14:14:21
阅读次数:
0
前端资源准备好index.html和login.html 目录结构: urls.py设置: from django.views.generic import TemplateView urlpatterns = [ # path('admin/', admin.site.urls), path('a ...
分类:
其他好文 时间:
2021-06-02 13:18:59
阅读次数:
0
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. ...
最小生成树核心Algorithm 问题描述:给定一个 n 个点 m 条边的无向图,图中可能存在重边和自环,边权可能为负数。 求最小生成树的树边权重之和,如果最小生成树不存在则输出 impossible。 给定一张边带权的无向图 G=(V,E),其中 V 表示图中点的集合,E 表示图中边的集合,n=| ...
分类:
编程语言 时间:
2021-06-02 12:10:54
阅读次数:
0
考场上爆搜的每个点到达的概率,$TLE$理所当然,由于搜概率不太好记忆化,所以这个方法可能也只能到这了 code #include <cstdio> #include <cstring> #include <algorithm> #define printf Ruusupuu=printf #def ...
分类:
其他好文 时间:
2021-06-02 11:14:15
阅读次数:
0