Codeforces 311C Fetch the Treasure 取模意义下的最短路 (看题解)
Fetch the Treasure感觉这题很nb啊, 虽然套了一个一点都不有趣的壳子。我们注意到 k 的值在 1e4以内, 我们用d[ i ] 表示在模 k == i 能达到的最小的值是谁。用最短路取更新。。#include<bits/stdc++.h>#define LL long long#define LD long double#define ...