首页 > TAG信息列表 > 1381

1381:城市路(Dijkstra)

城市路 注意: 两个城市之间可能有多条路。 #include<iostream> #include<cstring> #include<cmath> #define inf 0x3f3f3f3f using namespace std; const int N=2005; int mapp[N][N],dis[N]; bool vis[N]; int main(){ int n,m; cin>>n>>m; mems

1381. 设计一个支持增量操作的栈

用栈实现 import java.util.Stack; public class Algorithm { public static void main(String[] args) { CustomStack myStack = new CustomStack(5); for (int i = 0; i < 5; i++) { myStack.push(i); } myStack.incre

1381 单词背诵

1381 单词背诵 首先我本来想拿一个部分分60,可以不适用hash,用桶来进行骗分 结果我发现,我错了,这道题真的不太简单 首先我们先来说说题意: 意思就是说先输入一些单词,然后再输入一些单词,在m个单词中需要找到一连串单词,必须包含我要背的最多的,还得是长度最短的,其实这道题已经暗示我

1381. Design a Stack With Increment Operation

Design a stack which supports the following operations. Implement the CustomStack class: CustomStack(int maxSize) Initializes the object with maxSize which is the maximum number of elements in the stack or do nothing if the stack reached the maxSize. v