Advertisement

团体程序设计天梯赛-练习题 L2答案集合?

阅读量:

2019/03/18 完成01-02

2019/03/19 完成03

2019/03/20 完成04

2019/03/21 完成05(unordered_set)

2019/03/22 完成05(手写哈希),06

2019/03/23 完成07

2020/07/30 完成08,09

2020/07/31 补充08标准解法:Manacher算法

L2-001 紧急救援(C++11)

复制代码
 #include <iostream>

    
 #include <stack>
    
 #include <vector>
    
 using namespace std;
    
 using intpair = pair<int, int>;
    
 const int INF{0x3f3f3f3f};
    
 int main(int argc, char *argv[])
    
 {
    
     cin.sync_with_stdio(false);
    
     int N, M, S, D;
    
     cin >> N >> M >> S >>

全部评论 (0)

还没有任何评论哟~