This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Luna Capsule / vijos-1046 | |
Problem: https://vijos.org/p/1391 | |
Record: https://vijos.org/records/53f226d948c5fc5e2f8b4570 | |
- Use Dijkstra algorithm for calculating the maximum from the source to any points. | |
*/ | |
#include <cstdio> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Luna Capsule / vijos-1046 | |
Problem: https://vijos.org/p/1046 | |
Record: https://vijos.org/records/53e9a3f748c5fc6f3c8b457f | |
*/ | |
#include <cstdio> | |
#include <cstdlib> | |
#include <iostream> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
打开个人首页, 翻到最后一页, 在开发者工具的控制台里运行即可 | |
适用于v5 | |
*/ | |
var _counter = 0; | |
var iV = setInterval(function () { | |
var oB = $('[action-type="feed_list_delete"]'); | |
window.scrollTo(0, 1024000); |
NewerOlder