记录瞬间 近期操作Jenkins调用比较多,当然Jenkins本身也提供了jenkins-cli.jar的使用方法,可以直接通过命令行进行调用, 但是,由于不想引入太多的jar包,导致直接使用Jenkins api需求强烈 下面就把近期收集到的一些常见用法做一个简单总结,希望对初学者有所帮助。 9、 ...
Pavel loves grid mazes. A grid maze is an n?×?m rectangle maze where each cell is either empty, or is a wall. You can go from one cell to another only ...
分类:
其他好文 时间:
2020-02-17 12:32:11
阅读次数:
113
C. Yet Another Walking Robot 每次把走到的点记录下来,如果后续出现了一个点在之前已经出现过了,那么肯定出现了重复走。另外维护下 r-l 要尽可能小 #include <iostream> #include <algorithm> #include <string> #in ...
分类:
其他好文 时间:
2020-02-16 17:58:52
阅读次数:
86
Freddy Frog is sitting on a stone in the middle of a lake. Suddenly he notices Fiona Frog who is sitting on another stone. He plans to visit her, but ...
分类:
其他好文 时间:
2020-02-15 00:13:57
阅读次数:
103
Problem: clustering A clustering network transforms the data into another space and then selects one of the clusters. Next, the autoencoder associated ...
分类:
Web程序 时间:
2020-02-14 22:56:19
阅读次数:
114
题目如下: Given two equal-size strings s and t. In one step you can choose any character of t and replace it with another character. Return the minimum nu ...
分类:
其他好文 时间:
2020-02-09 18:39:10
阅读次数:
68
题目大意: 求贡献,已知公式n*(n+1)/2,求总和 收获: long long的转换技巧只能在乘或除上进行 题目链接 #include<bits/stdc++.h> typedef long long ll; using namespace std; const int N=2e5+10; in ...
分类:
其他好文 时间:
2020-02-09 13:15:03
阅读次数:
61
I have a simple RabbitMQ test program randomly enqueuing messages, and another reading them, all using Spring-AMQP. If the consumer dies (for example ...
分类:
其他好文 时间:
2020-02-08 11:51:37
阅读次数:
113
http://codeforces.com/contest/1296/problem/C 题意:给一段字符串表示移动,然后求删除最短的一段,并且不影响结果 题解: 意思是:建立pair点和map,当遍历到第i个点有一个pair值,把这个加到map里面,如果向后接着遍历时出现与i点相同的pair值时, ...
分类:
其他好文 时间:
2020-02-06 01:20:14
阅读次数:
65
题目链接:https://codeforces.com/contest/1296/problem/C C. Yet Another Walking Robot time limit per test 1 second memory limit per test 256 megabytes input ...
分类:
其他好文 时间:
2020-02-05 11:51:44
阅读次数:
60