├── .gitignore ├── 51Nod └── 1006.最长公共子序列Lcs │ └── 1006.最长公共子序列Lcs.py ├── BlueBridgeCup ├── Exercises │ ├── 入门训练 │ │ ├── A+B问题 │ │ │ ├── A+B问题.py │ │ │ └── input1.txt │ │ ├── BEGIN-2 序列求和 │ │ │ ├── BEGIN-2 序列求和.cpp │ │ │ └── BEGIN-2 序列求和.py │ │ ├── Fibonacci数列 │ │ │ ├── Fibonacci数列.py │ │ │ └── input1.txt │ │ └── 圆的面积 │ │ │ └── 圆的面积.py │ ├── 历届试题 │ │ ├── PREV-195-包子凑数.py │ │ ├── PREV-227-回文日期.py │ │ ├── PREV-25-城市建设.py │ │ ├── PREV-262-砝码称重.py │ │ ├── PREV-278-双向排序.py │ │ ├── PREV-281-时间显示.py │ │ ├── PREV-284-杨辉三角形.py │ │ ├── PREV-40-k倍区间.py │ │ ├── PREV-51-观光铁路.py │ │ ├── PREV-53-分考场.py │ │ ├── PREV-59-作物杂交.py │ │ ├── PREV-63-成绩统计.py │ │ ├── PREV-65-单词分析.py │ │ └── PREV-72-组合数问题 │ │ │ ├── PREV-72-组合数问题.py │ │ │ └── README.md │ ├── 基础练习 │ │ ├── 01字串 │ │ │ └── 试题 基础练习 01字串.py │ │ ├── BASIC-10 十进制转十六进制 │ │ │ ├── BASIC-10 十进制转十六进制.cpp │ │ │ └── BASIC-10 十进制转十六进制.py │ │ ├── BASIC-4 数列特征 │ │ │ └── BASIC-4 数列特征.py │ │ ├── BASIC-5 查找整数 │ │ │ └── BASIC-5 查找整数.py │ │ ├── BASIC-6 杨辉三角形 │ │ │ └── BASIC-6 杨辉三角形.py │ │ ├── BASIC-7 特殊的数字 │ │ │ └── BASIC-7 特殊的数字.py │ │ ├── BASIC-8 回文数 │ │ │ └── BASIC-8 回文数.py │ │ ├── BASIC-9 特殊回文数 │ │ │ └── BASIC-9 特殊回文数.py │ │ ├── 十六进制转八进制 │ │ │ ├── code.cpp │ │ │ ├── code.exe │ │ │ ├── input1.txt │ │ │ ├── output1.txt │ │ │ └── 试题 基础练习 十六进制转八进制.py │ │ ├── 十六进制转十进制 │ │ │ ├── code.cpp │ │ │ ├── code.exe │ │ │ └── 试题 基础练习 十六进制转十进制.py │ │ ├── 字母图形 │ │ │ └── 试题 基础练习 字母图形.py │ │ ├── 数列排序 │ │ │ ├── 试题 基础练习 数列排序.cpp │ │ │ └── 试题 基础练习 数列排序.py │ │ └── 闰年判断 │ │ │ └── 试题 基础练习 闰年判断.py │ ├── 算法提高 │ │ └── ADV-233 队列操作 │ │ │ ├── README.md │ │ │ └── python.py │ └── 算法训练 │ │ ├── ALGO-1 区间k大数查询 │ │ └── ALGO-1 区间k大数查询.py │ │ ├── ALGO-1-区间k大数查询 │ │ └── ALGO-1 区间k大数查询.py │ │ ├── ALGO-1005-数字游戏 │ │ ├── README.md │ │ └── python.py │ │ ├── ALGO-1006-拿金币 │ │ ├── README.md │ │ └── python.py │ │ ├── ALGO-1007-印章 │ │ └── python.py │ │ ├── ALGO-221 数据交换 │ │ ├── ALGO-221 数据交换.py │ │ ├── input1.txt │ │ └── output1.txt │ │ └── ALGO-221-数据交换 │ │ ├── ALGO-221 数据交换.py │ │ ├── input1.txt │ │ └── output1.txt └── Subject │ ├── 2013 │ ├── National _C_C++_A │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ ├── code.cpp │ │ │ ├── code.exe │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── code.py │ │ │ ├── input1.txt │ │ │ ├── output1.txt │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ ├── code.py │ │ │ ├── 图1.jpg │ │ │ ├── 数据 │ │ │ │ ├── input1.txt │ │ │ │ ├── input2.txt │ │ │ │ ├── input3.txt │ │ │ │ ├── input4.txt │ │ │ │ ├── input5.txt │ │ │ │ ├── output1.txt │ │ │ │ ├── output2.txt │ │ │ │ ├── output3.txt │ │ │ │ ├── output4.txt │ │ │ │ └── output5.txt │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 题目描述.txt │ │ └── 2013-决赛-C本科-A组.doc │ ├── National _C_C++_B │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── code.py │ │ │ ├── 图1.jpg │ │ │ ├── 评测数据 │ │ │ │ ├── input1.txt │ │ │ │ ├── input2.txt │ │ │ │ ├── input3.txt │ │ │ │ ├── input4.txt │ │ │ │ ├── input5.txt │ │ │ │ ├── output1.txt │ │ │ │ ├── output2.txt │ │ │ │ ├── output3.txt │ │ │ │ ├── output4.txt │ │ │ │ └── output5.txt │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ ├── 图1.jpg │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ └── 题目描述.txt │ │ └── 2013-决赛-C本科-B组.doc │ ├── National _C_C++_C │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── 图1.jpg │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ ├── 图1.jpg │ │ │ └── 题目描述.txt │ │ └── 2013-决赛-C高职高专组.doc │ ├── National _Java_A │ │ ├── 1 │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ ├── 图1.jpg │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 问题描述.txt │ │ └── 2013-决赛-Java本科-A组.doc │ ├── National _Java_B │ │ ├── 1 │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── 图1.jpg │ │ │ ├── 图2.JPG │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ ├── 图1.jpg │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ └── 题目描述.txt │ │ └── 2013-决赛-Java本科-B组.doc │ ├── National _Java_C │ │ ├── 1 │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── 图1.jpg │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 问题描述.txt │ │ └── 2013-决赛-Java高职高专组.doc │ ├── Province_C_C++_A │ │ ├── 1 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 19103224 │ │ │ ├── 19103325 │ │ │ ├── 19103328 │ │ │ ├── 19103411 │ │ │ ├── 19103429 │ │ │ ├── 19105133 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103224.cpp │ │ │ ├── 19103325.c │ │ │ ├── 19103328.cpp │ │ │ ├── 19103411.cpp │ │ │ ├── 19103429.c │ │ │ ├── 19105133.c │ │ │ ├── code.py │ │ │ ├── 题目描述.txt │ │ │ └── 高斯日记.cpp │ │ ├── 2 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 19103224 │ │ │ ├── 19103328 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103224.cpp │ │ │ ├── 19103328.cpp │ │ │ ├── 2013A-2.cpp │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── 18023309 │ │ │ ├── 19103117 │ │ │ ├── 19103213 │ │ │ ├── 19103224 │ │ │ ├── 19103325 │ │ │ ├── 19103328 │ │ │ ├── 19103429 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103117.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103224.c │ │ │ ├── 19103325.c │ │ │ ├── 19103328.cpp │ │ │ ├── 19103429.c │ │ │ ├── code.py │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 19103411 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103411.cpp │ │ │ ├── code.py │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ ├── 18023309.cpp │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ ├── 18023309.cpp │ │ │ └── 题目描述.txt │ │ ├── 7 │ │ │ ├── 18023309.cpp │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 8 │ │ │ └── 题目描述.txt │ │ ├── 9 │ │ │ ├── p1.JPG │ │ │ ├── p2.JPG │ │ │ └── 题目描述.txt │ │ └── 10 │ │ │ ├── code.py │ │ │ ├── graph.png │ │ │ └── 题目描述.txt │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 19103214 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103214.cpp │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ ├── 18023309 │ │ │ ├── 19103117 │ │ │ ├── 19103213 │ │ │ ├── 19103214 │ │ │ ├── 19103328 │ │ │ ├── 19103429 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103117.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103214.cpp │ │ │ ├── 19103328.c │ │ │ ├── 19103429.c │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 19103328 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103328.c │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── 18023309 │ │ │ └── 18023309.cpp │ │ ├── 5 │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ └── 题目描述.txt │ │ ├── 7 │ │ │ └── 题目描述.txt │ │ ├── 8 │ │ │ └── 题目描述.txt │ │ ├── 9 │ │ │ └── 题目描述.txt │ │ └── 10 │ │ │ └── 题目描述.txt │ ├── Province_C_C++_C │ │ ├── 1 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 19103429 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── 19103429.c │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── 18023309 │ │ │ ├── 19103213 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103213.cpp │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── 18023309.cpp │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ └── 题目描述.txt │ │ ├── 7 │ │ │ └── 题目描述.txt │ │ ├── 8 │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 9 │ │ │ └── 题目描述.txt │ │ └── 10 │ │ │ ├── p1.JPG │ │ │ ├── p2.JPG │ │ │ └── 题目描述.txt │ ├── Province_Java_A │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ └── 题目描述.txt │ │ ├── 7 │ │ │ └── 题目描述.txt │ │ ├── 8 │ │ │ └── 题目描述.txt │ │ ├── 9 │ │ │ ├── p1.JPG │ │ │ ├── p2.JPG │ │ │ └── 题目描述.txt │ │ └── 10 │ │ │ └── 题目描述.txt │ ├── Province_Java_B │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目描述.txt │ │ ├── 2 │ │ │ └── 题目描述.txt │ │ ├── 3 │ │ │ ├── p1.JPG │ │ │ └── 题目描述.txt │ │ ├── 4 │ │ │ └── 题目描述.txt │ │ ├── 5 │ │ │ └── 题目描述.txt │ │ ├── 6 │ │ │ └── 题目描述.txt │ │ ├── 7 │ │ │ └── 题目描述.txt │ │ ├── 8 │ │ │ └── 题目描述.txt │ │ ├── 9 │ │ │ └── 题目描述.txt │ │ └── 10 │ │ │ └── 题目描述.txt │ └── Province_Java_C │ │ ├── 1 │ │ ├── code.py │ │ └── 题目描述.txt │ │ ├── 2 │ │ └── 题目描述.txt │ │ ├── 3 │ │ └── 题目描述.txt │ │ ├── 4 │ │ └── 题目描述.txt │ │ ├── 5 │ │ └── 题目描述.txt │ │ ├── 6 │ │ └── 题目描述.txt │ │ ├── 7 │ │ └── 题目描述.txt │ │ ├── 8 │ │ ├── p1.JPG │ │ └── 题目描述.txt │ │ ├── 9 │ │ └── 题目描述.txt │ │ └── 10 │ │ ├── p1.JPG │ │ ├── p2.JPG │ │ └── 题目描述.txt │ ├── 2015 │ ├── National _C_C++_A │ │ ├── 1 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── README.md │ │ │ └── python.py │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 题目.txt │ │ └── 2015-决赛-C大学-A组.doc │ ├── National _C_C++_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ └── 2015-决赛-C大学-B组.doc │ ├── National _C_C++_C │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ └── 2015-决赛-C大学-C组.doc │ ├── National _Java_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 题目.txt │ │ └── 2015-决赛-Java大学-A组.doc │ ├── National _Java_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 题目.txt │ │ └── 2015-决赛-Java大学-B组.doc │ ├── National _Java_C │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ └── 2015-决赛-Java大学-C组.doc │ ├── Province_C_C++_A │ │ ├── 1 │ │ │ ├── solve.py │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── code.py │ │ │ └── solve.py │ │ ├── 7 │ │ │ └── README.md │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2015-省赛-C语言大学A组.doc │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2015-省赛-C语言大学B组.doc │ ├── Province_C_C++_C │ │ ├── 1 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ ├── solve.py │ │ │ ├── 图1.jpg │ │ │ ├── 图2.jpg │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ └── 2015-省赛-C语言大学C组.doc │ ├── Province_Java_A │ │ ├── 1 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2015-省赛-Java语言大学A组.doc │ ├── Province_Java_B │ │ ├── 1 │ │ │ └── 图1.jpg │ │ ├── 3 │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2015-省赛-Java语言大学B组.doc │ └── Province_Java_C │ │ ├── 1 │ │ └── 题目.txt │ │ ├── 2 │ │ └── 题目.txt │ │ ├── 3 │ │ ├── 图1.jpg │ │ └── 题目.txt │ │ ├── 4 │ │ └── 题目.txt │ │ ├── 5 │ │ ├── 图1.jpg │ │ └── 题目.txt │ │ ├── 6 │ │ └── 题目.txt │ │ ├── 7 │ │ └── 题目.txt │ │ ├── 8 │ │ └── 题目.txt │ │ ├── 9 │ │ ├── 图1.jpg │ │ ├── 图2.jpg │ │ └── 题目.txt │ │ ├── 10 │ │ └── 题目.txt │ │ └── 2015-省赛-Java语言大学C组.doc │ ├── 2016 │ ├── National _C_C++_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ └── 6 │ │ │ └── 题目.txt │ ├── National _C_C++_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ └── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 题目.txt │ ├── National _C_C++_C │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ └── 6 │ │ │ └── 题目.txt │ ├── National _Java_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ └── 6 │ │ │ ├── 图1.png │ │ │ ├── 图2.png │ │ │ └── 题目.txt │ ├── National _Java_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ └── 6 │ │ │ └── 题目.txt │ ├── National _Java_C │ │ ├── 2 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ └── 6 │ │ │ └── 题目.txt │ ├── Province_C_C++_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── README.md │ │ │ ├── python.py │ │ │ ├── 图1.jpg │ │ │ ├── 图2.jpg │ │ │ └── 图3.jpg │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ ├── 2016-省赛-C语言大学A组.doc │ │ └── H │ │ │ ├── README.md │ │ │ └── python.py │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ ├── 图2.jpg │ │ │ ├── 图3.jpg │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2016-省赛-C语言大学B组.doc │ ├── Province_C_C++_C │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2016-省赛-C语言大学C组.doc │ ├── Province_Java_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ ├── 图2.jpg │ │ │ ├── 图3.jpg │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2016-省赛-Java语言大学A组.doc │ ├── Province_Java_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── Thumbs.db │ │ │ ├── 图1.jpg │ │ │ ├── 图2.jpg │ │ │ ├── 图3.jpg │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2016-省赛-Java语言大学B组.doc │ └── Province_Java_C │ │ ├── 1 │ │ └── 题目.txt │ │ ├── 2 │ │ └── 题目.txt │ │ ├── 3 │ │ └── 题目.txt │ │ ├── 4 │ │ └── 题目.txt │ │ ├── 5 │ │ └── 题目.txt │ │ ├── 6 │ │ ├── Thumbs.db │ │ ├── 图1.jpg │ │ └── 题目.txt │ │ ├── 7 │ │ └── 题目.txt │ │ ├── 8 │ │ └── 题目.txt │ │ ├── 9 │ │ └── 题目.txt │ │ ├── 10 │ │ └── 题目.txt │ │ └── 2016-省赛-Java语言大学C组.doc │ ├── 2017 │ ├── National _C_C++_A │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── count.xlsx │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── 题目.doc │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 题目.doc │ │ │ └── 题目.txt │ │ └── 第八届-决赛-C大学-A组.doc │ ├── National _C_C++_B │ │ ├── 1 │ │ │ ├── code.cpp │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── p1.png │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 题目.doc │ │ │ └── 题目.txt │ │ ├── H │ │ │ ├── README.md │ │ │ └── python.py │ │ └── 第八届-决赛-C大学-B组.doc │ ├── National _C_C++_C │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ └── 第八届-决赛-C大学-C组.doc │ ├── National _Java_A │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 题目.doc │ │ │ └── 题目.txt │ │ └── 第八届-决赛-Java大学-A组.doc │ ├── National _Java_B │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 题目.doc │ │ │ └── 题目.txt │ │ └── 第八届-决赛-Java大学-B组.doc │ ├── National _Java_C │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ └── 第八届-决赛-Java大学-C组.doc │ ├── Province_C_C++_A │ │ ├── 1 │ │ │ ├── README.md │ │ │ ├── c++.cpp │ │ │ ├── image │ │ │ │ └── p1.png │ │ │ ├── maze.txt │ │ │ └── python.py │ │ ├── 2 │ │ │ ├── p1.png │ │ │ ├── solve.cpp │ │ │ └── solve.py │ │ ├── 4 │ │ │ ├── p1.png │ │ │ ├── p2.png │ │ │ └── p3.png │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── README.md │ │ │ ├── c++.cpp │ │ │ └── python.py │ │ ├── 9 │ │ │ ├── 9..cpp │ │ │ ├── 9..exe │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ ├── 10..cpp │ │ │ ├── 10..exe │ │ │ └── 题目.txt │ │ └── H │ │ │ ├── 8..cpp │ │ │ ├── 8..exe │ │ │ └── 题目.txt │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── p1.png │ │ │ ├── p2.png │ │ │ ├── p3.png │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── README.md │ │ │ └── python.py │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2017-省赛-C语言大学B组.doc │ ├── Province_C_C++_C │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── A.txt │ │ │ ├── B.txt │ │ │ ├── C.txt │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ └── 2017-省赛-C语言大学C组.doc │ ├── Province_Java_A │ │ ├── 1 │ │ │ ├── code.py │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── p1.png │ │ │ ├── p2.png │ │ │ ├── p3.png │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2017-省赛-Java语言大学A组.doc │ ├── Province_Java_B │ │ ├── 1 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── p1.png │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── p1.png │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2017-省赛-Java语言大学B组.doc │ └── Province_Java_C │ │ ├── 1 │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 2 │ │ ├── A.txt │ │ ├── B.txt │ │ ├── C.txt │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 3 │ │ ├── p1.png │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 4 │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 5 │ │ └── 题目.txt │ │ ├── 6 │ │ └── 题目.txt │ │ ├── 7 │ │ └── 题目.txt │ │ ├── 8 │ │ └── 题目.txt │ │ ├── 9 │ │ └── 题目.txt │ │ ├── 10 │ │ └── 题目.txt │ │ └── 2017-省赛-Java语言大学C组.doc │ ├── 2021 │ ├── Province_C_C++_A │ │ ├── D │ │ │ └── python.py │ │ ├── E │ │ │ └── python.py │ │ └── I │ │ │ └── python.py │ ├── Province_C_C++_B │ │ └── I │ │ │ ├── README.md │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ ├── images │ │ │ └── 20220106182946.png │ │ │ └── python.py │ └── Province_C_C++_C │ │ └── D │ │ └── python.py │ ├── 2022 │ └── Province_Python_B │ │ ├── A │ │ └── python.py │ │ ├── B │ │ └── python.py │ │ ├── C │ │ └── python.py │ │ ├── D │ │ └── python.py │ │ ├── E │ │ └── python.py │ │ ├── F │ │ └── python.py │ │ ├── G │ │ └── python.py │ │ ├── H │ │ └── python.py │ │ ├── I │ │ └── python.py │ │ ├── J │ │ └── python.py │ │ ├── LQ2022SP_PB │ │ └── 第十三届蓝桥杯大赛软件赛省赛_PB.pdf │ │ ├── README.md │ │ └── file_1649387597723.rar │ ├── 2023 │ └── Province_Python_Graduate │ │ ├── A │ │ ├── python.py │ │ └── records.txt │ │ └── python.py │ ├── 2014- │ ├── National _C_C++_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── p1.PNG │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ └── 6 │ │ │ ├── p1.PNG │ │ │ └── 题目.txt │ ├── National _C_C++_B │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ ├── p1.PNG │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── README.md │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ └── 6 │ │ │ ├── p1.PNG │ │ │ └── 题目.txt │ ├── National _C_C++_C │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ └── 6 │ │ │ └── 题目.txt │ ├── Province_C_C++_A │ │ ├── 1 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103224.cpp │ │ │ ├── 19103325.c │ │ │ ├── 19103328.c │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── 19103224.cpp │ │ │ ├── 19103328.c │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 18023309.cpp │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── 1.PNG │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ ├── 1.PNG │ │ │ └── 题目.txt │ │ └── 10 │ │ │ └── 题目.txt │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ ├── 18023309 │ │ │ ├── 18023309.cpp │ │ │ ├── 19103224.cpp │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── 18023309.cpp │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 18023309.cpp │ │ │ ├── 18023309.exe │ │ │ ├── 19103224.cpp │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 1.PNG │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── 1.png │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ ├── code.py │ │ │ ├── input1.txt │ │ │ ├── output1.txt │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ └── 10 │ │ │ └── 题目.txt │ ├── Province_C_C++_C │ │ ├── 1 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── code.cpp │ │ │ ├── code.exe │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2014-预-C高职.doc │ ├── Province_Java_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── code.cpp │ │ │ ├── code.exe │ │ │ ├── code.py │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ └── 2015-校内选拔-Java大学A组.doc │ ├── Province_Java_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── code.cpp │ │ │ ├── code.exe │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ └── 2015-校内选拔-Java大学B组.doc │ ├── Province_Java_C │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ └── 2015-校内选拔-Java大学C组.doc │ ├── School_C_C++_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── solve.py │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ └── 7 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ ├── School_C_C++_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── 图1.png │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ └── 2015-校内选拔-C大学B组.doc │ └── School_C_C++_C │ │ ├── 1 │ │ ├── 图1.png │ │ └── 题目.txt │ │ ├── 2 │ │ └── 题目.txt │ │ ├── 3 │ │ ├── 图1.png │ │ └── 题目.txt │ │ ├── 4 │ │ └── 题目.txt │ │ ├── 5 │ │ └── 题目.txt │ │ ├── 6 │ │ └── 题目.txt │ │ ├── 7 │ │ ├── 图1.png │ │ └── 题目.txt │ │ └── 2015-校内选拔-C大学C组.doc │ ├── 2018- │ ├── National _C_C++_B │ │ ├── 1 │ │ │ └── code.py │ │ └── 2 │ │ │ ├── README.md │ │ │ ├── c++.cpp │ │ │ └── python.py │ ├── National _Java_A │ │ ├── 1 │ │ │ └── code.py │ │ └── 2 │ │ │ └── code.py │ ├── Province_C_C++_A │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── README.md │ │ │ └── python.py │ │ ├── 7 │ │ │ ├── README.md │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ ├── README.md │ │ │ ├── p1.png │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ └── 2018-省赛-C语言大学A组.doc │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ ├── README.md │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ ├── 19_95e6f22816-p1.png │ │ │ ├── README.md │ │ │ ├── p1.png │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ ├── README.md │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ ├── 2018-省赛-C语言大学B组.doc │ │ └── B │ │ │ └── README.md │ ├── Province_C_C++_C │ │ ├── 1 │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 10 │ │ │ └── 题目.txt │ │ └── 2018-省赛-C语言大学C组.doc │ ├── Province_Java_A │ │ ├── 1 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 2 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 3 │ │ │ ├── solve.py │ │ │ └── 题目.txt │ │ ├── 4 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ ├── 5 │ │ │ └── 题目.txt │ │ ├── 6 │ │ │ └── 题目.txt │ │ ├── 7 │ │ │ └── 题目.txt │ │ ├── 8 │ │ │ └── 题目.txt │ │ ├── 9 │ │ │ └── 题目.txt │ │ └── 10 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ ├── Province_Java_B │ │ └── Java语言B组 │ │ │ ├── 1 │ │ │ └── 题目.txt │ │ │ ├── 2 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ │ ├── 3 │ │ │ └── 题目.txt │ │ │ ├── 4 │ │ │ └── 题目.txt │ │ │ ├── 5 │ │ │ └── 题目.txt │ │ │ ├── 6 │ │ │ └── 题目.txt │ │ │ ├── 7 │ │ │ ├── p1.png │ │ │ └── 题目.txt │ │ │ ├── 8 │ │ │ └── 题目.txt │ │ │ ├── 9 │ │ │ └── 题目.txt │ │ │ ├── 10 │ │ │ └── 题目.txt │ │ │ └── 2018-省赛-Java语言大学B组.doc │ └── Province_Java_C │ │ ├── 1 │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 2 │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 3 │ │ ├── input.txt │ │ ├── solve.py │ │ └── 题目.txt │ │ ├── 4 │ │ └── 题目.txt │ │ ├── 5 │ │ └── 题目.txt │ │ ├── 6 │ │ ├── p1.png │ │ └── 题目.txt │ │ ├── 7 │ │ └── 题目.txt │ │ ├── 8 │ │ ├── p1.png │ │ └── 题目.txt │ │ ├── 9 │ │ ├── p1.png │ │ └── 题目.txt │ │ └── 10 │ │ └── 题目.txt │ ├── 2019- │ ├── National_C_C++_A │ │ ├── A │ │ │ ├── code.py │ │ │ ├── inc.txt │ │ │ └── 题目.txt │ │ ├── B │ │ │ ├── code.py │ │ │ └── trip.txt │ │ ├── C │ │ │ └── python.py │ │ ├── D │ │ │ └── code.py │ │ ├── E │ │ │ └── python.py │ │ ├── F │ │ │ └── code.py │ │ └── problemCA.pdf │ ├── National_C_C++_B │ │ ├── 1 │ │ │ └── code.py │ │ ├── 2 │ │ │ └── code.py │ │ └── CB │ │ │ └── problemCB.pdf │ ├── National_C_C++_C │ │ ├── A │ │ │ └── code.py │ │ ├── B │ │ │ ├── code.py │ │ │ └── inc.txt │ │ ├── C │ │ │ └── code.py │ │ ├── D │ │ │ ├── code.py │ │ │ └── trip.txt │ │ ├── E │ │ │ └── 题目.txt │ │ ├── F │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── G │ │ │ └── 题目.txt │ │ ├── H │ │ │ └── 题目.txt │ │ ├── I │ │ │ └── 题目.txt │ │ ├── J │ │ │ └── 题目.txt │ │ └── problemCC.pdf │ ├── National_C_C++_G │ │ ├── C │ │ │ ├── code.py │ │ │ └── trip.txt │ │ ├── inc.txt │ │ └── problemCG.pdf │ ├── National_Java_A │ │ ├── E │ │ │ └── code.py │ │ ├── inc.txt │ │ ├── problemJA.pdf │ │ └── trip.txt │ ├── National_Java_B │ │ ├── inc.txt │ │ ├── problemJB.pdf │ │ └── trip.txt │ ├── National_Java_C │ │ ├── A │ │ │ └── code.py │ │ ├── B │ │ │ ├── code.py │ │ │ └── inc.txt │ │ ├── C │ │ │ └── code.py │ │ ├── H │ │ │ └── code.py │ │ └── problemJC.pdf │ ├── National_Java_G │ │ ├── inc.txt │ │ ├── problemJG.pdf │ │ └── trip.txt │ ├── Province_C_C++_A │ │ ├── A │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ └── solve.py │ │ ├── B │ │ │ └── solve.py │ │ ├── C │ │ │ └── solve.py │ │ ├── D │ │ │ ├── README.md │ │ │ ├── maze.txt │ │ │ ├── python.py │ │ │ └── solve.py │ │ ├── E │ │ │ └── solve.py │ │ ├── F │ │ │ └── solve.py │ │ └── G │ │ │ └── solve.py │ ├── Province_C_C++_B │ │ ├── 1 │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ ├── p1.png │ │ │ ├── python.py │ │ │ ├── team.txt │ │ │ └── 试题A-组队.md │ │ ├── 2 │ │ │ ├── README.md │ │ │ └── python.py │ │ ├── 3 │ │ │ ├── README.md │ │ │ └── python.py │ │ ├── 4 │ │ │ ├── README.md │ │ │ └── python.py │ │ ├── 5 │ │ │ ├── code.py │ │ │ ├── maze.txt │ │ │ └── 试题E-迷宫.md │ │ ├── 6 │ │ │ ├── code.py │ │ │ └── 试题F-特别数的和.md │ │ ├── 7 │ │ │ ├── code.py │ │ │ ├── p1.png │ │ │ └── 试题G-完全二叉树的权值.md │ │ ├── 8 │ │ │ ├── README.md │ │ │ └── code.py │ │ └── I │ │ │ ├── README.md │ │ │ ├── images │ │ │ └── img.png │ │ │ └── python.py │ ├── Province_C_C++_C │ │ ├── B │ │ │ ├── README.md │ │ │ ├── image │ │ │ │ └── img.png │ │ │ └── python.py │ │ ├── D │ │ │ ├── README.md │ │ │ └── python.py │ │ └── F │ │ │ ├── README.md │ │ │ └── python.py │ └── Province_Java_G │ │ ├── A │ │ └── python.py │ │ └── G │ │ ├── README.md │ │ ├── c++.cpp │ │ ├── c++.exe │ │ └── python.py │ ├── 2020- │ ├── 10月 │ │ ├── Province_C_C++_G │ │ │ └── F │ │ │ │ ├── README.md │ │ │ │ ├── c++.cpp │ │ │ │ ├── images │ │ │ │ ├── 7.png │ │ │ │ └── 8.png │ │ │ │ └── python.py │ │ ├── Province_Java_B │ │ │ ├── A │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ │ ├── B │ │ │ │ ├── 2020.txt │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ │ ├── C │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ │ ├── D │ │ │ │ ├── code.py │ │ │ │ ├── 图1.png │ │ │ │ └── 题目.txt │ │ │ ├── E │ │ │ │ └── code.py │ │ │ └── problemJB.pdf │ │ └── Province_Python │ │ │ ├── A │ │ │ ├── c++.cpp │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ │ ├── B │ │ │ ├── 2020.txt │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ │ ├── C │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ │ ├── D │ │ │ ├── README.md │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ │ ├── E │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ └── python.py │ │ │ ├── F │ │ │ ├── README.md │ │ │ ├── c++.cpp │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ │ ├── G │ │ │ ├── README.md │ │ │ ├── python.py │ │ │ └── 题目.txt │ │ │ └── H │ │ │ └── solve.py │ ├── 7月 │ │ ├── Province_C_C++_A │ │ │ ├── A │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ │ ├── B │ │ │ │ ├── code.py │ │ │ │ ├── graph.png │ │ │ │ └── 题目.txt │ │ │ ├── C │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ │ ├── D │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ │ └── E │ │ │ │ ├── code.py │ │ │ │ └── 题目.txt │ │ ├── Province_C_C++_B │ │ │ ├── 1 │ │ │ │ └── code.py │ │ │ ├── 2 │ │ │ │ └── code.py │ │ │ ├── 3 │ │ │ │ └── code.py │ │ │ ├── 4 │ │ │ │ ├── code.py │ │ │ │ └── prog.txt │ │ │ ├── 5 │ │ │ │ └── code.py │ │ │ ├── 6 │ │ │ │ └── code.py │ │ │ ├── 7 │ │ │ │ └── code.py │ │ │ └── 8 │ │ │ │ └── code.py │ │ └── Province_C_C++_C │ │ │ ├── 1 │ │ │ └── code.py │ │ │ ├── 2 │ │ │ └── code.py │ │ │ ├── 3 │ │ │ └── code.py │ │ │ ├── 4 │ │ │ └── code.py │ │ │ ├── 5 │ │ │ ├── code.py │ │ │ └── prog.txt │ │ │ └── 6 │ │ │ └── code.py │ ├── National_C_C++_A │ │ └── G │ │ │ └── python.py │ ├── National_C_C++_B │ │ ├── A │ │ │ └── python.py │ │ └── B │ │ │ └── python.py │ ├── National_Java_B │ │ ├── A │ │ │ └── code.py │ │ ├── B │ │ │ └── code.py │ │ ├── C │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── inc.txt │ │ └── problemJB.pdf │ ├── National_Java_C │ │ └── G │ │ │ ├── README.md │ │ │ └── python.py │ ├── National_Java_G │ │ └── F │ │ │ ├── README.md │ │ │ └── python.py │ ├── National_Python │ │ ├── C │ │ │ └── python.py │ │ ├── G │ │ │ └── python.py │ │ ├── H │ │ │ └── python.py │ │ ├── I │ │ │ └── python.py │ │ └── J │ │ │ └── python.py │ ├── Province_C_C++_A │ │ ├── A │ │ │ └── solve.py │ │ ├── B │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ └── python.py │ │ ├── C │ │ │ └── solve.py │ │ ├── D │ │ │ └── solve.py │ │ ├── E │ │ │ └── solve.py │ │ ├── F │ │ │ └── solve.py │ │ ├── G │ │ │ └── solve.py │ │ ├── H │ │ │ ├── dp.png │ │ │ └── solve.py │ │ ├── I │ │ │ └── solve.py │ │ └── J │ │ │ ├── README.md │ │ │ └── solve.py │ ├── Province_C_C++_C │ │ └── A │ │ │ ├── c++.cpp │ │ │ ├── c++.exe │ │ │ └── python.py │ ├── Simulation_1 │ │ ├── 1.15.125GB │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 10.晚会节目单 │ │ │ └── 10.晚会节目单 │ │ │ │ └── 晚会节目单.txt │ │ ├── 2.约数个数 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 3.叶结点数 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 4.数字9 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 5.数位递增的数 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 6.递增三元组 │ │ │ ├── code.py │ │ │ └── 题目.txt │ │ ├── 7.音节判断 │ │ │ └── 7.音节判断 │ │ │ │ └── 音节判断.txt │ │ ├── 8.长草 │ │ │ └── 8.长草 │ │ │ │ └── 长草.txt │ │ └── 9.序列计数 │ │ │ ├── code.py │ │ │ └── 题目.txt │ └── Simulation_2 │ │ ├── Python组 │ │ ├── 1.12.5MB │ │ │ └── code.py │ │ ├── 10.植树 │ │ │ └── code.py │ │ ├── 2.最多边数 │ │ │ └── code.py │ │ ├── 3.单词重排 │ │ │ └── code.py │ │ ├── 4.括号序列 │ │ │ └── code.py │ │ ├── 5.反倍数 │ │ │ └── code.py │ │ ├── 6.凯撒加密 │ │ │ └── code.py │ │ ├── 7.螺旋 │ │ │ └── code.py │ │ ├── 8.摆动序列 │ │ │ └── code.py │ │ └── 9.通电 │ │ │ └── code.py │ │ ├── 本科组 │ │ ├── 1.12.5MB │ │ │ ├── code.py │ │ │ └── desc │ │ ├── 10.植树 │ │ │ └── desc │ │ ├── 2.最多边数 │ │ │ ├── code.py │ │ │ └── desc │ │ ├── 3.单词重排 │ │ │ └── desc │ │ ├── 4.括号序列 │ │ │ └── 4.括号序列 │ │ │ │ └── desc │ │ ├── 5.反倍数 │ │ │ └── desc │ │ ├── 6.凯撒加密 │ │ │ └── desc │ │ ├── 7.螺旋 │ │ │ └── desc │ │ ├── 8.摆动序列 │ │ │ └── desc │ │ └── 9.通电 │ │ │ └── desc │ │ └── 高职组 │ │ ├── 1.十六进制1949 │ │ └── desc │ │ ├── 10.积木 │ │ └── desc │ │ ├── 2.互质个数 │ │ └── desc │ │ ├── 3.最大公约数 │ │ └── desc │ │ ├── 4.最多结点数 │ │ └── desc │ │ ├── 5.洁净数 │ │ └── desc │ │ ├── 6.最大距离 │ │ └── desc │ │ ├── 7.最长递增 │ │ └── desc │ │ ├── 8.字符计数 │ │ └── desc │ │ └── 9.练功 │ │ └── desc │ └── 真题分析.xlsx ├── Codeforces └── Contests │ ├── Codeforces Round #616 │ └── (Div. 2) │ │ └── A.Even But Not Even │ │ ├── README.md │ │ └── code.py │ └── Educational Codeforces Round 81 │ └── Rated for Div. 2 │ ├── A. Display The Number │ ├── A. Display The Number.py │ └── README.md │ └── B. Infinite Prefixes │ ├── B. Infinite Prefixes.py │ └── README.md ├── Gym ├── 100049A │ ├── 100049A.Chemistry.py │ └── A - Chemistry.pdf └── 100049B │ ├── 100049B.Bound Found.py │ └── B - Bound Found.pdf ├── Interview ├── ByteDance │ ├── 2018 │ │ ├── 1-最外层的点 │ │ │ ├── README.md │ │ │ ├── images │ │ │ │ └── 300557_1502940399706_1329AFEA3FC7961DEA219781A71B3B5B.jpg │ │ │ └── python.py │ │ └── 2-最大值区间 │ │ │ ├── README.md │ │ │ └── python.py │ └── Exercise │ │ └── ZJ1附加题.py └── JD │ ├── JD1-年终奖 │ └── solve.py │ ├── JD15-括号匹配方案 │ └── solve.py │ ├── JD2-抛小球 │ └── solve.py │ ├── JD3-小东分苹果 │ └── solve.py │ ├── JD4-上台阶 │ └── solve.py │ ├── JD5-小球的距离 │ └── solve.py │ ├── JD6-保卫方案 │ └── solve.py │ └── JD7-集合 │ └── solve.py ├── Learn └── DataStructure │ └── UnionFindSet │ └── __pycache__ │ └── template.cpython-37.pyc ├── LeetCode ├── LCP │ ├── 01. Guess Numbers │ │ └── code.py │ ├── 06. 拿硬币 │ │ └── solve.py │ ├── 07. 传递信息 │ │ └── python.py │ └── 13. 寻宝 │ │ └── code.py ├── Multithreading │ ├── 1114. Print in Order │ │ ├── README.md │ │ └── python.py │ ├── 1115. Print FooBar Alternately │ │ └── solve.py │ └── 1117. Building H2O │ │ └── python.py ├── Problems │ ├── 1. Two Sum │ │ ├── code.py │ │ └── solve.cpp │ ├── 100. Same Tree │ │ └── code.py │ ├── 1004. Max Consecutive Ones III │ │ └── code.py │ ├── 101. Symmetric Tree │ │ └── 101. Symmetric Tree.py │ ├── 1014. Best Sightseeing Pair │ │ └── 1014. Best Sightseeing Pair.py │ ├── 1018. Binary Prefix Divisible By 5 │ │ ├── code.cpp │ │ └── code.exe │ ├── 104. Maximum Depth of Binary Tree │ │ └── code.py │ ├── 1049. Last Stone Weight II │ │ └── solve.py │ ├── 105. Construct Binary Tree from Preorder and Inorder Traversal │ │ └── 105. Construct Binary Tree from Preorder and Inorder Traversal.py │ ├── 1052. Grumpy Bookstore Owner │ │ └── code.py │ ├── 109. Convert Sorted List to Binary Search Tree │ │ └── code.py │ ├── 110. Balanced Binary Tree │ │ └── code.py │ ├── 1108. Defanging an IP Address │ │ └── solve.py │ ├── 112. Path Sum │ │ └── 112. Path Sum.py │ ├── 1128. Number of Equivalent Domino Pairs │ │ ├── code.cpp │ │ └── code.py │ ├── 114. Flatten Binary Tree to Linked List │ │ └── code.py │ ├── 1143. Longest Common Subsequence │ │ └── solve.py │ ├── 1178. Number of Valid Words for Each Puzzle │ │ └── solve.py │ ├── 118. Pascal's Triangle │ │ ├── README.md │ │ └── python.py │ ├── 1190. Reverse Substrings Between Each Pair of Parentheses │ │ └── solve.py │ ├── 120. Triangle │ │ └── 120. Triangle.py │ ├── 1203. Sort Items by Groups Respecting Dependencies │ │ └── code.cpp │ ├── 1208. Get Equal Substrings Within Budget │ │ └── code.py │ ├── 123. Best Time to Buy and Sell Stock III │ │ └── code.cpp │ ├── 1232. Check If It Is a Straight Line │ │ ├── code.cpp │ │ └── code.py │ ├── 124. Binary Tree Maximum Path Sum │ │ └── 124. Binary Tree Maximum Path Sum.py │ ├── 125. Valid Palindrome │ │ └── 125. Valid Palindrome.py │ ├── 126. Word Ladder II │ │ └── 126. Word Ladder II.py │ ├── 1267. Count Servers that Communicate │ │ ├── README.md │ │ └── python.py │ ├── 127. Word Ladder │ │ └── code.py │ ├── 128. Longest Consecutive Sequence │ │ └── 128. Longest Consecutive Sequence.py │ ├── 1281. Subtract the Product and Sum of Digits of an Integer │ │ └── solve.py │ ├── 1290. Convert Binary Number in a Linked List to Integer │ │ └── solve.cpp │ ├── 13. Roman to Integer │ │ └── code.py │ ├── 130. Surrounded Regions │ │ └── code.py │ ├── 1319. Number of Operations to Make Network Connected │ │ ├── code.cpp │ │ └── code.py │ ├── 133. Clone Graph │ │ └── code.py │ ├── 134. Gas Station │ │ └── code.py │ ├── 135. Candy │ │ └── code.py │ ├── 1356. Sort Integers by The Number of 1 Bits │ │ └── code.py │ ├── 1365. How Many Numbers Are Smaller Than the Current Number │ │ └── code.py │ ├── 1371. Find the Longest Substring Containing Vowels in Even Counts │ │ └── 1371. Find the Longest Substring Containing Vowels in Even Counts.py │ ├── 139. Word Break │ │ └── 139. Word Break.py │ ├── 14. Longest Common Prefix │ │ └── 14. Longest Common Prefix.py │ ├── 141. Linked List Cycle │ │ └── code.py │ ├── 1418. Display Table of Food Orders in a Restaurant │ │ └── solve.py │ ├── 142. Linked List Cycle II │ │ └── code.py │ ├── 1423. Maximum Points You Can Obtain from Cards │ │ └── code.py │ ├── 143.Reorder List │ │ └── code.py │ ├── 1431. Kids With the Greatest Number of Candies │ │ └── 1431. Kids With the Greatest Number of Candies.py │ ├── 1438. Longest Continuous Subarray With Absolute Diff Less Than or Equal to Limit │ │ └── code.py │ ├── 144. Binary Tree Preorder Traversal │ │ └── code.py │ ├── 1442. Count Triplets That Can Form Two Arrays of Equal XOR │ │ └── solve.py │ ├── 146. LRU Cache │ │ └── 146. LRU Cache.py │ ├── 1470. Shuffle the Array │ │ └── code.py │ ├── 148. Sort List │ │ ├── README.md │ │ ├── images │ │ │ └── 格局打开.jpg │ │ └── python.py │ ├── 1480. Running Sum of 1d Array │ │ └── code.py │ ├── 1489. Find Critical and Pseudo-Critical Edges in Minimum Spanning Tree │ │ ├── code.cpp │ │ └── code.py │ ├── 15. 3Sum │ │ └── 15. 3Sum.py │ ├── 152. Maximum Product Subarray │ │ └── 152. Maximum Product Subarray.py │ ├── 1566. Detect Pattern of Length M Repeated K or More Times │ │ └── python.py │ ├── 1579. Remove Max Number of Edges to Keep Graph Fully Traversable │ │ └── code.py │ ├── 16. 3Sum Closest │ │ └── 16. 3Sum Closest.py │ ├── 160. Intersection of Two Linked Lists │ │ └── solve.cpp │ ├── 1600. Throne Inheritance │ │ └── solve.py │ ├── 1631. Path With Minimum Effort │ │ └── code.py │ ├── 1640. Check Array Formation Through Concatenation │ │ └── code.py │ ├── 167. Two Sum II - Input array is sorted │ │ └── code.py │ ├── 168. Excel Sheet Column Title │ │ └── solve.py │ ├── 169. Majority Element │ │ ├── c++.cpp │ │ └── python.py │ ├── 173. Binary Search Tree Iterator │ │ └── solve.py │ ├── 1734. Decode XORed Permutation │ │ └── solve.py │ ├── 174. Dungeon Game │ │ └── 174. Dungeon Game.py │ ├── 1773. Count Items Matching a Rule │ │ └── solve.py │ ├── 179. Largest Number │ │ └── solve.py │ ├── 18. 4Sum │ │ └── code.py │ ├── 1828. Queries on Number of Points Inside a Circle │ │ └── solve.py │ ├── 1846. Maximum Element After Decreasing and Rearranging │ │ └── solve.py │ ├── 1854. Maximum Population Year │ │ └── solve.py │ ├── 1863. Sum of All Subset XOR Totals │ │ └── solve.py │ ├── 1869. Longer Contiguous Segments of Ones than Zeros │ │ └── solve.py │ ├── 189. Rotate Array │ │ └── code.cpp │ ├── 19. Remove Nth Node From End of List │ │ ├── code.py │ │ └── solve.cpp │ ├── 190. Reverse Bits │ │ └── solve.py │ ├── 1925. Count Square Sum Triples │ │ └── python.py │ ├── 198. House Robber │ │ └── 198. House Robber.py │ ├── 2. Add Two Numbers │ │ └── code.py │ ├── 20. Valid Parentheses │ │ └── code.py │ ├── 2000. Reverse Prefix of Word │ │ └── python.py │ ├── 202. Happy Number │ │ └── python.py │ ├── 203. Remove Linked List Elements │ │ └── solve.cpp │ ├── 204. Count Primes │ │ └── python.py │ ├── 205. Isomorphic Strings │ │ └── code.cpp │ ├── 206.Reverse Linked List │ │ ├── 206.Reverse Linked List.py │ │ └── solve.cpp │ ├── 207. Course Schedule │ │ └── code.py │ ├── 208. Implement Trie (Prefix Tree) │ │ └── solve.py │ ├── 209. Minimum Size Subarray Sum │ │ └── 209. Minimum Size Subarray Sum.py │ ├── 21. Merge Two Sorted Lists │ │ ├── c++.cpp │ │ └── code.py │ ├── 210. Course Schedule II │ │ └── 210. Course Schedule II.py │ ├── 213. House Robber II │ │ └── solve.py │ ├── 215. Kth Largest Element in an Array │ │ └── 215. Kth Largest Element in an Array.py │ ├── 217. Contains Duplicate │ │ ├── c++.cpp │ │ └── python.py │ ├── 225. Implement Stack using Queues │ │ ├── README.md │ │ └── python.py │ ├── 227. Basic Calculator II │ │ └── solve.py │ ├── 231. Power of Two │ │ └── solve.py │ ├── 234. Palindrome Linked List │ │ └── code.py │ ├── 237. Delete Node in a Linked List │ │ └── solve.py │ ├── 238. Product of Array Except Self │ │ └── 238. Product of Array Except Self.py │ ├── 240. Search a 2D Matrix II │ │ ├── README.md │ │ └── python.py │ ├── 242. Valid Anagram │ │ ├── c++.cpp │ │ └── python.py │ ├── 264. Ugly Number II │ │ ├── solve.cpp │ │ └── solve.py │ ├── 268. Missing Number │ │ ├── README.md │ │ ├── c++.cpp │ │ └── python.py │ ├── 27. Remove Element │ │ └── solve.py │ ├── 274. H-Index │ │ ├── README.md │ │ └── python.py │ ├── 28. Implement strStr() │ │ └── solve.py │ ├── 28. 实现 strStr() │ │ └── solve.py │ ├── 287. Find the Duplicate Number │ │ └── 287. Find the Duplicate Number.py │ ├── 290. Word Pattern │ │ └── code.py │ ├── 297. Serialize and Deserialize Binary Tree │ │ └── 297. Serialize and Deserialize Binary Tree.py │ ├── 3. Longest Substring Without Repeating Characters │ │ └── solve.py │ ├── 300. Longest Increasing Subsequence │ │ └── solve.py │ ├── 303. Range Sum Query - Immutable │ │ └── solve.py │ ├── 309. Best Time to Buy and Sell Stock with Cooldown │ │ └── 309. Best Time to Buy and Sell Stock with Cooldown.py │ ├── 31. Next Permutation │ │ └── code.py │ ├── 312. Burst Balloons │ │ └── 312. Burst Balloons.py │ ├── 316. Remove Duplicate Letters │ │ └── code.py │ ├── 32. Longest Valid Parentheses │ │ └── 32. Longest Valid Parentheses.py │ ├── 327. Count of Range Sum │ │ └── code.py │ ├── 329. Longest Increasing Path in a Matrix │ │ └── code.py │ ├── 33. Search in Rotated Sorted Array │ │ └── python.py │ ├── 330. Patching Array │ │ └── code.cpp │ ├── 336. Palindrome Pairs │ │ └── code.py │ ├── 337. House Robber III │ │ └── code.py │ ├── 342. Power of Four │ │ └── solve.py │ ├── 343. Integer Break │ │ └── code.py │ ├── 344. Reverse String │ │ └── code.py │ ├── 347. Top K Frequent Elements │ │ └── solve.py │ ├── 349. Intersection of Two Arrays │ │ └── code.py │ ├── 35. Search Insert Position │ │ ├── README.md │ │ └── python.py │ ├── 350. Intersection of Two Arrays II │ │ └── 350. Intersection of Two Arrays II.py │ ├── 378. Kth Smallest Element in a Sorted Matrix │ │ └── 378. Kth Smallest Element in a Sorted Matrix.py │ ├── 38. 外观数列 │ │ └── solve.py │ ├── 386. Lexicographical Numbers │ │ ├── README.md │ │ └── python.py │ ├── 389. Find the Difference │ │ ├── README.md │ │ └── python.py │ ├── 392. Is Subsequence │ │ └── code.py │ ├── 394. Decode String │ │ └── 394. Decode String.py │ ├── 395. Longest Substring with At Least K Repeating Characters │ │ └── solve.py │ ├── 4. Median of Two Sorted Arrays │ │ └── 4. Median of Two Sorted Arrays.py │ ├── 401. Binary Watch │ │ └── solve.py │ ├── 41. First Missing Positive │ │ └── 41. First Missing Positive.py │ ├── 410. Split Array Largest Sum │ │ └── code.py │ ├── 414. Third Maximum Number │ │ ├── README.md │ │ ├── c++.cpp │ │ └── python.py │ ├── 415. Add Strings │ │ └── code.py │ ├── 421. Maximum XOR of Two Numbers in an Array │ │ └── solve.py │ ├── 424. Longest Repeating Character Replacement │ │ └── code.py │ ├── 43. Multiply Strings │ │ └── code.py │ ├── 44. Wildcard Matching │ │ └── 44. Wildcard Matching.py │ ├── 445. Add Two Numbers II │ │ └── solve.py │ ├── 448. Find All Numbers Disappeared in an Array │ │ └── code.py │ ├── 451. Sort Characters By Frequency │ │ ├── README.md │ │ └── python.py │ ├── 455. Assign Cookies │ │ └── code.py │ ├── 463. Island Perimeter │ │ └── code.py │ ├── 48. Rotate Image │ │ └── code.py │ ├── 480. Sliding Window Median │ │ └── code.py │ ├── 485. Max Consecutive Ones │ │ └── code.py │ ├── 49. Group Anagrams │ │ └── code.py │ ├── 494. Target Sum │ │ └── solve.py │ ├── 496. Next Greater Element I │ │ └── code.cpp │ ├── 5. Longest Palindromic Substring │ │ └── 5. Longest Palindromic Substring.py │ ├── 503. Next Greater Element II │ │ └── code.cpp │ ├── 507. Perfect Number │ │ └── python.py │ ├── 509. Fibonacci Number │ │ └── code.cpp │ ├── 523. Continuous Subarray Sum │ │ └── solve.py │ ├── 525. Contiguous Array │ │ └── solve.py │ ├── 53. Maximum Subarray │ │ └── solve.py │ ├── 530. 二叉搜索树的最小绝对差 │ │ └── solve.cpp │ ├── 54. Spiral Matrix │ │ └── solve.py │ ├── 543. 二叉树的直径 │ │ └── solve.cpp │ ├── 546. Remove Boxes │ │ └── code.py │ ├── 547. Number of Provinces │ │ └── code.cpp │ ├── 561. Array Partition I │ │ └── code.py │ ├── 566. Reshape the Matrix │ │ └── code.py │ ├── 567. Permutation in String │ │ └── code.py │ ├── 57 - II. 和为s的连续正数序列 │ │ └── python.py │ ├── 58. Length of Last Word │ │ └── code.py │ ├── 59. Spiral Matrix II │ │ └── solve.py │ ├── 62. Unique Paths │ │ └── code.py │ ├── 621. Task Scheduler │ │ └── code.py │ ├── 628. Maximum Product of Three Numbers │ │ ├── code.cpp │ │ └── code.py │ ├── 63. Unique Paths II │ │ └── 63. Unique Paths II.py │ ├── 632. Smallest Range Covering Elements from K Lists │ │ └── code.py │ ├── 64. Minimum Path Sum │ │ └── code.py │ ├── 643. Maximum Average Subarray I │ │ └── code.py │ ├── 66. Plus One │ │ └── solve.py │ ├── 67. Add Binary │ │ └── 67. Add Binary.py │ ├── 674. Longest Continuous Increasing Subsequence │ │ └── code.py │ ├── 680. Valid Palindrome II │ │ ├── 680. Valid Palindrome II.py │ │ └── README.md │ ├── 684. Redundant Connection │ │ └── code.cpp │ ├── 692. Top K Frequent Words │ │ └── solve.py │ ├── 696. Count Binary Substrings │ │ └── code.py │ ├── 697. Degree of an Array │ │ └── code.py │ ├── 7. Reverse Integer │ │ ├── code.py │ │ └── solve.cpp │ ├── 70. Climbing Stairs │ │ └── 70. Climbing Stairs.py │ ├── 700. 二叉搜索树中的搜索 │ │ └── solve.cpp │ ├── 703. Kth Largest Element in a Stream │ │ └── code.py │ ├── 704. Binary Search │ │ └── python.py │ ├── 705. Design HashSet │ │ └── solve.py │ ├── 706. Design HashMap │ │ └── solve.py │ ├── 718. Maximum Length of Repeated Subarray │ │ └── 718. Maximum Length of Repeated Subarray.py │ ├── 721. Accounts Merge │ │ └── code.cpp │ ├── 724. Find Pivot Index │ │ └── code.py │ ├── 726. Number of Atoms │ │ └── solve.py │ ├── 733. Flood Fill │ │ └── code.py │ ├── 738. Monotone Increasing Digits │ │ └── code.py │ ├── 739. Daily Temperatures │ │ ├── 739. Daily Temperatures.py │ │ └── code.cpp │ ├── 746. Min Cost Climbing Stairs │ │ └── code.py │ ├── 75. Sort Colors │ │ └── 75. Sort Colors.py │ ├── 752. Open the Lock │ │ └── solve.py │ ├── 76. Minimum Window Substring │ │ └── 76. Minimum Window Substring.py │ ├── 763. Partition Labels │ │ └── code.py │ ├── 766. Toeplitz Matrix │ │ └── solve.py │ ├── 778. Swim in Rising Water │ │ └── code.py │ ├── 785. Is Graph Bipartite │ │ └── 785. Is Graph Bipartite.py │ ├── 797. All Paths From Source to Target │ │ ├── README.md │ │ └── python.py │ ├── 8. String to Integer (atoi) │ │ └── solve.py │ ├── 80. Remove Duplicates from Sorted Array II │ │ └── solve.py │ ├── 81. Search in Rotated Sorted Array II │ │ └── solve.py │ ├── 811. Subdomain Visit Count │ │ ├── README.md │ │ └── python.py │ ├── 82. Remove Duplicates from Sorted List II │ │ └── solve.py │ ├── 83. Remove Duplicates from Sorted List │ │ └── solve.cpp │ ├── 832. Flipping an Image │ │ └── solve.py │ ├── 834. Sum of Distances in Tree │ │ └── code.py │ ├── 837. New 21 Game │ │ └── 837. New 21 Game.py │ ├── 839. Similar String Groups │ │ └── code.py │ ├── 84. Largest Rectangle in Histogram │ │ └── 84. Largest Rectangle in Histogram.py │ ├── 842. Split Array into Fibonacci Sequence │ │ └── code.py │ ├── 85. Maximal Rectangle │ │ └── code.cpp │ ├── 856. Score of Parentheses │ │ └── solve.py │ ├── 867. Transpose Matrix │ │ └── solve.py │ ├── 87. Scramble String │ │ └── solve.py │ ├── 872. Leaf-Similar Trees │ │ └── solve.py │ ├── 876. Middle of the Linked List │ │ └── solve.cpp │ ├── 879. Profitable Schemes │ │ └── solve.py │ ├── 88. Merge Sorted Array │ │ └── solve.py │ ├── 888. Fair Candy Swap │ │ └── code.py │ ├── 894. All Possible Full Binary Trees │ │ ├── README.md │ │ └── python.py │ ├── 896. Monotonic Array │ │ └── solve.py │ ├── 897. Increasing Order Search Tree │ │ ├── c++.cpp │ │ └── solve.py │ ├── 9. Palindrome Number │ │ └── solve.cpp │ ├── 92.Reverse Linked List II │ │ └── 92.Reverse Linked List II.py │ ├── 925. Long Pressed Name │ │ └── code.py │ ├── 93. Restore IP Addresses │ │ └── code.py │ ├── 941. Valid Mountain Array │ │ └── code.py │ ├── 947. Most Stones Removed with Same Row or Column │ │ └── code.cpp │ ├── 95. Unique Binary Search Trees II │ │ └── code.py │ ├── 959. Regions Cut By Slashes │ │ └── code.py │ ├── 96. Unique Binary Search Trees │ │ └── 96. Unique Binary Search Trees.py │ ├── 97. Interleaving String │ │ └── 97. Interleaving String.py │ ├── 974. Subarray Sums Divisible by K │ │ └── 974. Subarray Sums Divisible by K.py │ ├── 978. Longest Turbulent Subarray │ │ └── code.py │ ├── 98. Validate Binary Search Tree │ │ └── solve.py │ ├── 983. Minimum Cost For Tickets │ │ └── 983. Minimum Cost For Tickets.py │ ├── 989. Add to Array-Form of Integer │ │ ├── code.cpp │ │ ├── code.exe │ │ └── code.py │ ├── 99. Recover Binary Search Tree │ │ └── code.py │ ├── 990. Satisfiability of Equality Equations │ │ └── 990. Satisfiability of Equality Equations.py │ ├── 992. Subarrays with K Different Integers │ │ └── code.py │ ├── 993. Cousins in Binary Tree │ │ └── solve.py │ ├── 995. Minimum Number of K Consecutive Bit Flips │ │ └── python.py │ └── 997. Find the Town Judge │ │ └── python.py ├── SQL │ ├── 175. Combine Two Tables │ │ └── solve.sql │ ├── 176. Second Highest Salary │ │ └── solve.sql │ ├── 181. Employees Earning More Than Their Managers │ │ └── solve.sql │ ├── 182. Duplicate Emails │ │ └── solve.sql │ └── 627. Swap Salary │ │ └── solve.sql ├── Shell │ ├── 192. Word Frequency │ │ └── solve.sh │ ├── 193. Valid Phone Numbers │ │ └── solve.sh │ └── 195. Tenth Line │ │ └── solve.sh ├── WeeklyCompetition │ └── 243 │ │ ├── 5772. 检查某单词是否等于两单词之和 │ │ └── solve.py │ │ └── 5773. 插入后的最大值 │ │ └── solve.py ├── 剑指 Offer │ ├── 06. 从尾到头打印链表 │ │ └── solve.cpp │ ├── 11. 旋转数组的最小数字 │ │ └── code.py │ ├── 15. 二进制中1的个数 │ │ └── solve.py │ ├── 25. 合并两个排序的链表 │ │ └── solve.cpp │ ├── 28. 对称的二叉树 │ │ └── c++.cpp │ ├── 37. 序列化二叉树 │ │ └── solve.py │ ├── 38. 字符串的排列 │ │ └── solve.py │ ├── 42. 连续子数组的最大和 │ │ └── solve.py │ ├── 55 - II. 平衡二叉树 │ │ └── c++.cpp │ ├── 56. 二叉搜索树中两个节点之和 │ │ └── c++.cpp │ └── 85. 生成匹配的括号 │ │ ├── README.md │ │ └── python.py └── 面试题 │ ├── 面试题 02.01. 移除重复节点 │ └── 面试题 02.01. 移除重复节点.py │ ├── 面试题 02.02. 返回倒数第 k 个节点 │ └── solve.py │ ├── 面试题 02.03. 删除中间节点 │ └── solve.py │ ├── 面试题 02.06. Palindrome Linked List LCCI │ └── solve.cpp │ ├── 面试题 04.03. 特定深度节点链表 │ └── solve.py │ ├── 面试题 08.03. Magic Index LCCI │ └── code.py │ ├── 面试题 10.05. 稀疏数组搜索 │ └── python.py │ ├── 面试题 16.10. 生存人数 │ └── python.py │ ├── 面试题 16.11. 跳水板 │ └── 面试题 16.11. 跳水板.py │ ├── 面试题 16.18. 模式匹配 │ └── 面试题 16.18. 模式匹配.py │ ├── 面试题 17.12. BiNode LCCI │ └── solve.py │ ├── 面试题 17.13. 恢复空格 │ └── 面试题 17.13. 恢复空格.py │ ├── 面试题29. 顺时针打印矩阵 │ └── 面试题29. 顺时针打印矩阵.py │ └── 面试题64. 求1+2+…+n │ └── 面试题64. 求1+2+…+n.py ├── PAT ├── 乙级 │ ├── 1016 部分A+B │ │ └── solve.py │ ├── 1017 A除以B │ │ └── solve.py │ └── 1018 锤子剪刀布 │ │ └── solve.py └── 甲级 │ ├── 1001 A+B Format │ └── code.py │ ├── 1002 A+B for Polynomials │ └── code.py │ ├── 1005 Spell It Right │ └── code.py │ ├── 1008 Elevator │ └── code.py │ ├── 1011 World Cup Betting │ └── code.py │ ├── 1015 Reversible Primes │ └── code.py │ ├── 1019 General Palindromic Number │ └── code.py │ ├── 1023 Have Fun with Numbers │ └── code.py │ ├── 1027 Colors in Mars │ └── code.py │ ├── 1031 Hello World for U │ └── code.py │ ├── 1034 Head of a Gang │ └── code.py │ ├── 1035 Password │ └── code.py │ ├── 1042 Shuffling Machine │ └── code.py │ ├── 1100 Mars Numbers │ └── code.py │ └── 1107 Social Clusters │ └── code.py ├── POJ ├── 1000.A+B Problem │ └── code.cpp ├── 1001.Exponentiation │ ├── code.cpp │ ├── code.exe │ └── gmon.out ├── 1062.昂贵的聘礼 │ ├── code.cpp │ ├── code.exe │ ├── gmon.out │ └── graph.png ├── 1125.Stockbroker Grapevine │ ├── code.cpp │ ├── code.exe │ ├── gmon.out │ └── graph.png ├── 1502.MPI Maelstrom │ ├── code.cpp │ ├── code.exe │ └── gmon.out ├── 1511.Invitation Cards │ ├── code.cpp │ ├── code.exe │ ├── gmon.out │ └── graph.png ├── 2965.The Pilots Brothers' refrigerator │ └── c++.cpp ├── 3061.Subsequence │ ├── 3061.Subsequence.py │ └── README.md └── 3981. 字符串替换 │ ├── c++.cpp │ └── c++.exe ├── README.md ├── 百练 └── 1363.Rails │ ├── README.md │ └── python.py ├── 算法与数据结构之美 ├── Algorithm │ ├── BinarySystem │ │ ├── 10_to_2 │ │ │ └── 10_to_2.py │ │ ├── 10_to_any │ │ │ └── 10_to_any.py │ │ ├── 2_to_10 │ │ │ └── 2_to_10.py │ │ ├── Learn.md │ │ ├── M_to_N │ │ │ └── M_to_N.py │ │ └── any_to_10 │ │ │ └── any_to_10.py │ ├── BitOperation │ │ └── XOR_Operation │ │ │ ├── 1.XOR_swap.py │ │ │ ├── 2.Odd_Times_Num1.py │ │ │ ├── 3.Odd_Times_Num2.py │ │ │ └── README.md │ ├── DynamicProgramming │ │ ├── LongestCommonSubsequence │ │ │ └── code.py │ │ └── NokiaProblem │ │ │ ├── README.md │ │ │ └── code.py │ ├── Greedy │ │ ├── 01.找零问题.py │ │ ├── 02.背包问题.py │ │ └── 03.活动选择问题.py │ ├── KMP │ │ ├── README.md │ │ └── template.py │ ├── Permutation │ │ └── solve.py │ ├── Recursion │ │ ├── 01.Hanoi │ │ │ └── 01.Hanoi.py │ │ └── NoteBook.md │ ├── Search │ │ └── BinarySearch │ │ │ ├── README.md │ │ │ └── code.py │ └── Sort │ │ ├── BubbleSort │ │ ├── BubbleSortCode.py │ │ ├── 动图演示.gif │ │ └── 最大间隙问题 │ │ │ └── code.py │ │ ├── BucketSort │ │ ├── BucketSortCode.py │ │ └── 动图演示.gif │ │ ├── CountSort │ │ ├── CountSortCode.py │ │ └── 动图演示.gif │ │ ├── HeapSort │ │ ├── 01.topK │ │ │ └── topK.py │ │ ├── HeapSortCode.py │ │ └── 动图演示.gif │ │ ├── InsertSort │ │ ├── InsertSortCode.py │ │ └── 动图演示.gif │ │ ├── MergeSort │ │ ├── MergeSortCode.py │ │ ├── NoteBook.md │ │ ├── 动图演示.gif │ │ └── 小和问题 │ │ │ └── code.py │ │ ├── Noteook.md │ │ ├── QuickSort │ │ ├── NoteBook.md │ │ ├── RandomQuickSort │ │ │ └── RandomQuickSortCode.py │ │ ├── 动图演示.gif │ │ └── 荷兰国旗问题 │ │ │ └── code.py │ │ ├── RadixSort │ │ ├── RadixSortCode.py │ │ └── 动图演示.gif │ │ ├── SelectSort │ │ ├── SelectSortCode.py │ │ └── 动图演示.gif │ │ ├── ShellSort │ │ ├── ShellSortCode.py │ │ └── 动图演示.gif │ │ └── 排序算法.eddx ├── DataStructure │ ├── Graph │ │ ├── MinimumSpanningTree │ │ │ ├── kruskal.py │ │ │ └── prim.py │ │ ├── ShortestPaths │ │ │ ├── bellman-ford.py │ │ │ ├── dijkstra.py │ │ │ ├── floyd-warshall.py │ │ │ ├── spfa.py │ │ │ └── 最短路径.ppt │ │ ├── TopologicalSorting │ │ │ ├── Topological Sorting.pptx │ │ │ ├── WeChat Screenshot_20210113173918.png │ │ │ ├── code.cpp │ │ │ ├── template.cpp │ │ │ └── template.exe │ │ └── graph.py │ ├── Queue │ │ └── 迷宫问题 │ │ │ └── code.py │ ├── Stack │ │ ├── Stack.pptx │ │ ├── images │ │ │ ├── shareStack.gif │ │ │ ├── shareStack.png │ │ │ └── stack.png │ │ ├── stack.cpp │ │ ├── stlStack.cpp │ │ ├── 共享栈 │ │ │ └── shareStack.cpp │ │ └── 迷宫问题 │ │ │ └── code.py │ ├── String │ │ └── Manacher │ │ │ └── template.py │ ├── Tree │ │ ├── BinaryTree │ │ │ ├── 1.二叉树遍历.py │ │ │ ├── 2.前驱后继节点.py │ │ │ ├── 3.序列化与反序列化.py │ │ │ ├── 4.验证平衡二叉树.py │ │ │ ├── 5.验证搜索二叉树.py │ │ │ ├── 6.验证完全二叉树.py │ │ │ ├── 7.完全二叉树节点个数.py │ │ │ ├── BinaryTree.py │ │ │ ├── KMP.py │ │ │ └── README.md │ │ ├── DP │ │ │ └── README.md │ │ └── Trie_Tree │ │ │ └── code.py │ ├── UnionFindSet │ │ ├── README.md │ │ ├── Union Find Set.pptx │ │ ├── images │ │ │ ├── 031047279682220.jpg │ │ │ ├── 1283325_190152_1_lit.jpg │ │ │ ├── 16f5df0a4a87b7f5_600_0.jpeg │ │ │ ├── 2019112810120902210.png │ │ │ ├── QQ截图20210113163609.png │ │ │ ├── WeChat Screenshot_20210114191259.png │ │ │ └── image.png │ │ ├── template.cpp │ │ ├── template.py │ │ └── 岛问题 │ │ │ └── code.py │ ├── 栈实现队列 │ │ └── code.py │ └── 线性表 │ │ └── LinkedList │ │ ├── DoubleLinkedList.py │ │ ├── template.cpp │ │ └── template.exe ├── 宏观调度 │ ├── Find number in sorted matrix │ │ └── code.py │ ├── Print matrix zig zag │ │ └── code.py │ ├── Rotate matrix │ │ └── code.py │ └── Spiral prider print matrix │ │ └── code.py ├── 数论 │ └── 卢卡斯定理 │ │ └── README.md └── 算法基础 │ └── 1_枚举 │ └── 1_1_1.py └── 计蒜客 ├── T1408矩形嵌套 └── code.py └── T1880最长公共子序列 └── code.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | *.html 3 | *.mp4 4 | *.zip 5 | .idea/ 6 | .gitignore -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/入门训练/A+B问题/A+B问题.py: -------------------------------------------------------------------------------- 1 | A, B = input().split() 2 | print(int(A) + int(B)) 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/入门训练/A+B问题/input1.txt: -------------------------------------------------------------------------------- 1 | 0 451 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/入门训练/BEGIN-2 序列求和/BEGIN-2 序列求和.py: -------------------------------------------------------------------------------- 1 | n = int(input()) 2 | print((n + 1) * int(n / 2) if n > 1 else 1) 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/入门训练/Fibonacci数列/input1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/入门训练/圆的面积/圆的面积.py: -------------------------------------------------------------------------------- 1 | import math 2 | 3 | 4 | r = int(input()) 5 | area = math.pi * r * r 6 | print("%.7f" % area) 7 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-51-观光铁路.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Exercises/历届试题/PREV-51-观光铁路.py -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/历届试题/PREV-72-组合数问题/README.md: -------------------------------------------------------------------------------- 1 | [题目链接](http://lx.lanqiao.cn/problem.page?gpid=T2700) 2 | 3 | --- 4 | 5 | ## Ideas 6 | 7 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/BASIC-10 十进制转十六进制/BASIC-10 十进制转十六进制.py: -------------------------------------------------------------------------------- 1 | print(str(hex(int(input()))).replace("0x", "", 1).upper()) 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/BASIC-4 数列特征/BASIC-4 数列特征.py: -------------------------------------------------------------------------------- 1 | n = input() 2 | nums = list(map(int, input().split())) 3 | print(max(nums)) 4 | print(min(nums)) 5 | print(sum(nums)) 6 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/BASIC-5 查找整数/BASIC-5 查找整数.py: -------------------------------------------------------------------------------- 1 | _ = input() 2 | try: 3 | print(list(map(int, input().split())).index(int(input())) + 1) 4 | except: 5 | print(-1) 6 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/BASIC-8 回文数/BASIC-8 回文数.py: -------------------------------------------------------------------------------- 1 | for num in range(10, 100): 2 | print(str(num) + str(num)[::-1]) 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/十六进制转八进制/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Exercises/基础练习/十六进制转八进制/code.exe -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/十六进制转八进制/试题 基础练习 十六进制转八进制.py: -------------------------------------------------------------------------------- 1 | for _ in range(int(input())): 2 | print(str(oct(int(input(), 16))).replace("0o", "", 1)) 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/十六进制转十进制/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Exercises/基础练习/十六进制转十进制/code.exe -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/十六进制转十进制/试题 基础练习 十六进制转十进制.py: -------------------------------------------------------------------------------- 1 | print(int(input(), 16)) 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/数列排序/试题 基础练习 数列排序.py: -------------------------------------------------------------------------------- 1 | n = int(input()) 2 | nums = list(map(int, input().split())).sort() 3 | for i in nums: 4 | print(i, end=" ") 5 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/基础练习/闰年判断/试题 基础练习 闰年判断.py: -------------------------------------------------------------------------------- 1 | year = int(input()) 2 | print("yes" if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0 else "no") 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/算法训练/ALGO-221 数据交换/input1.txt: -------------------------------------------------------------------------------- 1 | 4 7 -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/算法训练/ALGO-221 数据交换/output1.txt: -------------------------------------------------------------------------------- 1 | 7 4 -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/算法训练/ALGO-221-数据交换/input1.txt: -------------------------------------------------------------------------------- 1 | 4 7 -------------------------------------------------------------------------------- /BlueBridgeCup/Exercises/算法训练/ALGO-221-数据交换/output1.txt: -------------------------------------------------------------------------------- 1 | 7 4 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/4/input1.txt: -------------------------------------------------------------------------------- 1 | 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 | 5 6 8 9 10 14 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/4/output1.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/5/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _C_C++_A/5/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/5/数据/input1.txt: -------------------------------------------------------------------------------- 1 | 3 1 2 | 1 3 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/5/数据/output1.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/5/数据/output2.txt: -------------------------------------------------------------------------------- 1 | 657258 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/5/数据/output3.txt: -------------------------------------------------------------------------------- 1 | 3782448 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/5/数据/output4.txt: -------------------------------------------------------------------------------- 1 | 32549018 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/5/数据/output5.txt: -------------------------------------------------------------------------------- 1 | 3850842 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _C_C++_A/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_A/6/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _C_C++_A/6/图2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _C_C++_B/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/input1.txt: -------------------------------------------------------------------------------- 1 | 5 9 15 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/input2.txt: -------------------------------------------------------------------------------- 1 | 1 4 7 13 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/input3.txt: -------------------------------------------------------------------------------- 1 | 1 5 8 12 19 21 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/input4.txt: -------------------------------------------------------------------------------- 1 | 1 400 500 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/input5.txt: -------------------------------------------------------------------------------- 1 | 1 4 8 12 16 19 28 33 35 36 40 45 52 66 67 68 69 77 85 99 102 134 155 211 214 216 355 376 400 412 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/output1.txt: -------------------------------------------------------------------------------- 1 | 5 8 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/output2.txt: -------------------------------------------------------------------------------- 1 | 7 10 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/output3.txt: -------------------------------------------------------------------------------- 1 | 1 2 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/output4.txt: -------------------------------------------------------------------------------- 1 | 1 399 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/4/评测数据/output5.txt: -------------------------------------------------------------------------------- 1 | 134 148 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_B/5/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _C_C++_B/5/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_C/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _C_C++_C/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _C_C++_C/6/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _C_C++_C/6/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_A/1/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_A/1/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_A/2/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_A/2/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_A/3/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_A/3/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_A/4/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_A/4/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_A/5/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_A/5/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_A/5/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_A/5/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_A/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_A/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_A/6/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_A/6/图2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_A/6/问题描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_A/6/问题描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_B/1/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_B/1/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_B/2/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_B/2/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_B/3/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_B/3/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_B/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_B/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_B/4/图2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_B/4/图2.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_B/4/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_B/4/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_B/5/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_B/5/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_B/5/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_B/5/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_B/6/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_B/6/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_C/1/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_C/1/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_C/2/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_C/2/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_C/3/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_C/3/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_C/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_C/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_C/4/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_C/4/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_C/5/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_C/5/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_C/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_C/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_C/6/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_C/6/图2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/National _Java_C/6/问题描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/National _Java_C/6/问题描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/1/18023309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/1/18023309 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19103213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19103213 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19103224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19103224 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19103325: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19103325 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19103328: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19103328 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19103411: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19103411 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19103429: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19103429 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19105133: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/1/19105133 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/1/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/1/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/2/18023309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/2/18023309 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/2/19103213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/2/19103213 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/2/19103224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/2/19103224 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/2/19103328: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/2/19103328 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/2/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/2/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/3/18023309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/3/18023309 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/3/19103117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/3/19103117 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/3/19103213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/3/19103213 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/3/19103224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/3/19103224 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/3/19103325: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/3/19103325 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/3/19103328: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/3/19103328 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/3/19103429: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/3/19103429 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/3/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/3/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/3/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/3/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/4/18023309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/4/18023309 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/4/19103213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/4/19103213 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/4/19103411: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/4/19103411 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/4/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/4/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/4/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/4/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/5/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/5/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/6/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/6/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/7/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/7/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/8/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/8/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/9/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/9/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/9/p2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/9/p2.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_A/9/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_A/9/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/1/18023309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/1/18023309 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/1/19103213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/1/19103213 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/1/19103214: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/1/19103214 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/1/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/1/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/2/18023309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/2/18023309 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/2/19103117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/2/19103117 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/2/19103213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/2/19103213 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/2/19103214: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/2/19103214 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/2/19103328: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/2/19103328 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/2/19103429: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/2/19103429 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/2/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/2/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/3/18023309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/3/18023309 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/3/19103213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/3/19103213 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/3/19103328: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/3/19103328 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/3/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/3/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/4/18023309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/4/18023309 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/5/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/5/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/6/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/6/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/7/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/7/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/8/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/8/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_B/9/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_B/9/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/1/18023309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/1/18023309 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/1/19103213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/1/19103213 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/1/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/1/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/10/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/10/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/10/p2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/10/p2.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/2/18023309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/2/18023309 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/2/19103213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/2/19103213 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/2/19103429: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/2/19103429 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/2/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/2/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/3/18023309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/3/18023309 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/3/19103213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/3/19103213 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/3/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/3/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/3/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/3/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/4/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/4/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/4/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/4/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/5/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/5/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/6/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/6/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/7/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/7/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/8/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/8/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/8/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/8/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_C_C++_C/9/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_C_C++_C/9/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/1/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/1/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/10/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/10/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/2/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/2/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/2/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/2/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/3/code.py: -------------------------------------------------------------------------------- 1 | print(str(2 ** 11213 - 1)[-100:]) 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/3/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/3/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/4/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/4/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/4/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/4/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/5/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/5/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/6/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/6/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/7/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/7/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/8/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/8/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/9/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/9/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/9/p2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/9/p2.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_A/9/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_A/9/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_B/1/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_B/1/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_B/10/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_B/10/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_B/2/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_B/2/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_B/3/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_B/3/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_B/3/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_B/3/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_B/4/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_B/4/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_B/5/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_B/5/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_B/6/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_B/6/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_B/7/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_B/7/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_B/8/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_B/8/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_B/9/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_B/9/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/1/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_C/1/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/10/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_C/10/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/10/p2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_C/10/p2.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/10/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_C/10/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/2/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_C/2/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/3/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_C/3/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/4/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_C/4/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/5/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_C/5/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/6/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_C/6/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/7/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_C/7/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/8/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_C/8/p1.JPG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/8/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_C/8/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2013/Province_Java_C/9/题目描述.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2013/Province_Java_C/9/题目描述.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_A/2/p1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_A/2/p1.PNG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_A/6/p1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_A/6/p1.PNG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_B/2/code.py: -------------------------------------------------------------------------------- 1 | import math 2 | 3 | 4 | if __name__ == '__main__': 5 | num = 16 6 | print(math.comb(2 * num, num) // (num + 1)) 7 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_B/2/p1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_B/2/p1.PNG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_B/6/p1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_B/6/p1.PNG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/National _C_C++_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/National _C_C++_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_A/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_A/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_A/5/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_A/5/1.PNG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_A/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_A/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_A/9/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_A/9/1.PNG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_A/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_A/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_B/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/6/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_B/6/1.PNG -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/7/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_B/7/1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/8/input1.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 20 4 -3 -10 -22 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/8/output1.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_B/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_B/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_B/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_C/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_C/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_C/2/code.py: -------------------------------------------------------------------------------- 1 | n = int(input("Please input month: ")) 2 | ans = (30000 - 1250 * (n - 1)) * 0.005 + 1250 3 | print("%.2f" % ans) 4 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_C_C++_C/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_C_C++_C/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/2/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_A/2/code.exe -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/2/code.py: -------------------------------------------------------------------------------- 1 | flag, ans = 1, 0 2 | for i in range(100): 3 | ans += flag * (1 / (2 * i + 1)) 4 | flag *= -1 5 | print(4 * ans) 6 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/2/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_A/2/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_A/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_A/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_A/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_A/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/2/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_B/2/code.exe -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/2/code.py: -------------------------------------------------------------------------------- 1 | index, summ = 1, 0 2 | while summ < 15: 3 | summ += 1 / index 4 | index += 1 5 | print(f"index = {index - 1}, summ = {summ}") 6 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_B/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_B/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/4/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_C/4/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/Province_Java_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/Province_Java_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/2/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_A/2/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_A/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_A/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_A/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_A/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_B/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_B/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/1/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_C/1/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_C/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/7/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_C/7/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2014-/School_C_C++_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2014-/School_C_C++_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _C_C++_A/1/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _C_C++_A/1/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _C_C++_A/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _C_C++_A/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _C_C++_A/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _C_C++_A/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _C_C++_A/6/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _C_C++_A/6/图2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _C_C++_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _C_C++_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _C_C++_B/2/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _C_C++_B/2/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _C_C++_B/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _C_C++_B/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _C_C++_C/2/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _C_C++_C/2/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_A/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _Java_A/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_A/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _Java_A/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_A/6/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _Java_A/6/图2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/2/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _Java_B/2/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _Java_B/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _Java_B/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_B/6/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _Java_B/6/图2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/National _Java_C/3/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/National _Java_C/3/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_A/1/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_A/1/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_A/2/solve.py: -------------------------------------------------------------------------------- 1 | import datetime 2 | 3 | start = datetime.date(2014, 11, 9) 4 | print(start + datetime.timedelta(days=1000)) 5 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_A/3/题目.txt: -------------------------------------------------------------------------------- 1 | 奇妙的数字 2 | 3 | 小明发现了一个奇妙的数字。 4 | 5 | 它的平方和立方正好把0~9的10个数字每个用且只用了一次。 6 | 7 | 你能猜出这个数字是多少吗? 8 | 9 | 请填写该数字,不要填写任何多余的内容。 10 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_A/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_A/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_A/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_A/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_B/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_B/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_B/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_B/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/1/solve.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | cnt = 0 3 | for i in range(21, 50, 2): 4 | cnt += 1 5 | print(cnt) 6 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_C/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_C/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/6/题目.txt: -------------------------------------------------------------------------------- 1 | 奇妙的数字 2 | 3 | 小明发现了一个奇妙的数字。 4 | 5 | 它的平方和立方正好把0~9的10个数字每个用且只用了一次。 6 | 7 | 你能猜出这个数字是多少吗? 8 | 9 | 请填写该数字,不要填写任何多余的内容。 10 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/9/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_C/9/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_C_C++_C/9/图2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_C_C++_C/9/图2.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_A/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_A/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/1/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_B/1/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_B/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_B/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_B/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_C/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/3/题目.txt: -------------------------------------------------------------------------------- 1 |  2 | 无穷分数 3 | 4 | 无穷的分数,有时会趋向于固定的数字。 5 | 请计算【图1.jpg】所示的无穷分数,要求四舍五入,精确到小数点后5位,小数位不足的补0。 6 | 7 | 请填写该浮点数,不能填写任何多余的内容。 8 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/5/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_C/5/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/6/题目.txt: -------------------------------------------------------------------------------- 1 | 2 | 奇妙的数字 3 | 4 | 小明发现了一个奇妙的数字。它的平方和立方正好把0~9的10个数字每个用且只用了一次。 5 | 你能猜出这个数字是多少吗? 6 | 7 | 请填写该数字,不要填写任何多余的内容。 8 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/9/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_C/9/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2015/Province_Java_C/9/图2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2015/Province_Java_C/9/图2.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_A/2/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_A/2/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_A/4/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_A/4/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_B/5/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_B/5/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_B/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_B/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_B/6/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_B/6/图2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_C/5/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_C/5/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _C_C++_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _C_C++_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/5/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_A/5/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/6/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_A/6/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/6/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_A/6/图2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/4/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_B/4/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/2/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_C/2/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/5/图1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_C/5/图1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/National _Java_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/National _Java_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_C_C++_A/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/6/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_C_C++_A/6/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/7/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_C_C++_A/7/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/7/图2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_C_C++_A/7/图2.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_A/7/图3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_C_C++_A/7/图3.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_C_C++_B/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/6/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_C_C++_B/6/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/7/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_C_C++_B/7/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/7/图2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_C_C++_B/7/图2.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_B/7/图3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_C_C++_B/7/图3.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/4/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_C_C++_C/4/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/6/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_C_C++_C/6/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_C_C++_C/7/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_C_C++_C/7/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/6/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_A/6/Thumbs.db -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/6/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_A/6/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/7/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_A/7/Thumbs.db -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/7/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_A/7/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/7/图2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_A/7/图2.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_A/7/图3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_A/7/图3.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/3/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_B/3/Thumbs.db -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/3/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_B/3/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/6/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_B/6/Thumbs.db -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/6/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_B/6/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/7/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_B/7/Thumbs.db -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/7/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_B/7/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/7/图2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_B/7/图2.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_B/7/图3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_B/7/图3.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_C/6/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_C/6/Thumbs.db -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2016/Province_Java_C/6/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2016/Province_Java_C/6/图1.jpg -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_A/5/题目.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_A/5/题目.doc -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_A/6/题目.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_A/6/题目.doc -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_B/1/code.py: -------------------------------------------------------------------------------- 1 | print(int("MANY", 36)) 2 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_B/2/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_B/2/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_B/3/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_B/3/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_B/6/题目.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_B/6/题目.doc -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_C/6/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_C/6/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _C_C++_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _C_C++_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/2/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_A/2/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/3/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_A/3/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/6/题目.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_A/6/题目.doc -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/3/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_B/3/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/6/题目.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_B/6/题目.doc -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/3/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_C/3/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/6/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_C/6/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/National _Java_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/National _Java_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/10/10..exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_A/10/10..exe -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_A/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/2/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_A/2/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/4/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_A/4/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/4/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_A/4/p2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/4/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_A/4/p3.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/9/9..exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_A/9/9..exe -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_A/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/H/8..exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_A/H/8..exe -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_A/H/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_A/H/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_B/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/4/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_B/4/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/4/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_B/4/p2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/4/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_B/4/p3.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_B/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_B/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_B/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_C/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_C/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_C_C++_C/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_C_C++_C/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/1/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/1/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/3/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/3/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/4/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/4/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/4/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/4/p2.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/4/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/4/p3.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_A/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_A/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_B/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/2/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_B/2/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_B/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/4/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_B/4/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_B/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_B/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_B/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_C/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/3/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_C/3/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2017/Province_Java_C/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2017/Province_Java_C/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/National _Java_A/1/code.py: -------------------------------------------------------------------------------- 1 | x1, y1 = 2.3, 2.5 2 | x2, y2 = 6.4, 3.1 3 | x3, y3 = 5.1, 7.2 4 | print((x1 * y2 + x2 * y3 + x3 * y1 - x1 * y3 - x2 * y1 - x3 * y2) / 2) 5 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_A/10/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_A/10/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_A/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_A/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_B/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_B/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_B/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_B/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_B/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_B/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_B/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_B/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_B/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_B/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_B/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_B/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_B/7/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_B/7/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_B/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_B/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_B/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_B/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_B/9/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_B/9/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_C/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_C/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_C/8/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_C/8/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_C_C++_C/9/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_C_C++_C/9/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/1/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_A/1/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/10/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_A/10/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_A/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_A/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/4/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_A/4/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_A/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_A/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_A/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_A/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_A/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/10/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_C/10/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/2/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_C/2/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/3/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_C/3/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/4/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_C/4/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/5/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_C/5/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/6/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_C/6/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/6/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_C/6/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/7/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_C/7/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/8/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_C/8/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/8/题目.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_C/8/题目.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2018-/Province_Java_C/9/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2018-/Province_Java_C/9/p1.png -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_C_C++_A/B/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2019-/National_C_C++_A/B/code.py -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_C_C++_C/D/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2019-/National_C_C++_C/D/code.py -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_Java_A/trip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2019-/National_Java_A/trip.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_Java_B/trip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2019-/National_Java_B/trip.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_Java_C/H/code.py: -------------------------------------------------------------------------------- 1 | N, M = map(int, input().split()) 2 | print(N, M) 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2019-/National_Java_G/trip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/2019-/National_Java_G/trip.txt -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/10月/Province_Java_B/A/code.py: -------------------------------------------------------------------------------- 1 | ans = 0 2 | for i in range(1, 2021): 3 | ans += str(i).count("B") 4 | print(ans) 5 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/10月/Province_Python/A/c++.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | using namespace std; 4 | 5 | int main() { 6 | 7 | return 0; 8 | } 9 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/10月/Province_Python/D/code.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | ans, n = 1, 20 3 | for i in range(n): 4 | ans += i * 4 5 | print(ans) 6 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/7月/Province_C_C++_B/5/code.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | pass 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/7月/Province_C_C++_C/1/code.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | print((7 ** 2020) % 1921) 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/National_C_C++_B/A/python.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | ans = 0 3 | for i in range(1, 2021): 4 | ans += str(i).count('B') 5 | print(ans) 6 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/National_Java_B/A/code.py: -------------------------------------------------------------------------------- 1 | cnt = 0 2 | for i in range(1, 2021): 3 | if 'B' in str(i): 4 | cnt += 1 5 | print(cnt) 6 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/National_Python/C/python.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | print(100) 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Province_C_C++_A/A/solve.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | ans = 0 3 | for i in range(1, 2021): 4 | ans += str(i).count('B') 5 | print(ans) 6 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Province_C_C++_A/J/README.md: -------------------------------------------------------------------------------- 1 | 在确定的长度下,要求数列的逆序对个数的最大值,那么数列的第 i 个字母一定要 >= 第 i + 1 个字母。 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Simulation_1/1.15.125GB/题目.txt: -------------------------------------------------------------------------------- 1 | 【问题描述】 2 | 在计算机存储中,15.125GB是多少MB? 3 | 【答案提交】 4 | 这是一道结果填空的题,你只需要算出结果后提交即可。本题的结果为一个整数,在提交答案时只填写这个整数,填写多余的内容将无法得分。 5 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Simulation_1/2.约数个数/题目.txt: -------------------------------------------------------------------------------- 1 | 【问题描述】 2 | 1200000有多少个约数(只计算正约数)。 3 | 【答案提交】 4 | 这是一道结果填空的题,你只需要算出结果后提交即可。本题的结果为一个整数,在提交答案时只填写这个整数,填写多余的内容将无法得分。 5 | 6 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Simulation_1/3.叶结点数/题目.txt: -------------------------------------------------------------------------------- 1 | 【问题描述】 2 | 一棵包含有2019个结点的二叉树,最多包含多少个叶结点? 3 | 4 | 【答案提交】 5 | 这是一道结果填空的题,你只需要算出结果后提交即可。本题的结果为一个整数,在提交答案时只填写这个整数,填写多余的内容将无法得分。 6 | 7 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Simulation_2/本科组/1.12.5MB/code.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | print(12.5 * 1024 * 1024) 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Simulation_2/本科组/1.12.5MB/desc: -------------------------------------------------------------------------------- 1 | 【问题描述】 2 | 在计算机存储中,12.5MB是多少字节? 3 | 【答案提交】 4 | 这是一道结果填空的题,你只需要算出结果后提交即可。本题的结果为一个整数,在提交答案时只填写这个整数,填写多余的内容将无法得分。 5 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Simulation_2/本科组/2.最多边数/desc: -------------------------------------------------------------------------------- 1 | 【问题描述】 2 | 一个包含有2019个结点的有向图,最多包含多少条边?(不允许有重边) 3 | 【答案提交】 4 | 这是一道结果填空的题,你只需要算出结果后提交即可。本题的结果为一个整数,在提交答案时只填写这个整数,填写多余的内容将无法得分。 5 | 6 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Simulation_2/高职组/2.互质个数/desc: -------------------------------------------------------------------------------- 1 |

【问题描述】
不超过19000的正整数中,与19000互质的数的个数是多少?
【答案提交】
这是一道结果填空的题,你只需要算出结果后提交即可。本题的结果为一个整数,在提交答案时只填写这个整数,填写多余的内容将无法得分。


-------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2020-/Simulation_2/高职组/3.最大公约数/desc: -------------------------------------------------------------------------------- 1 |

【问题描述】
70044与113148的最大公约数是多少?
【答案提交】
这是一道结果填空的题,你只需要算出结果后提交即可。本题的结果为一个整数,在提交答案时只填写这个整数,填写多余的内容将无法得分。


-------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2022/Province_Python_B/G/python.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | pass 3 | -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/2022/Province_Python_B/README.md: -------------------------------------------------------------------------------- 1 | 最新消息 : 第十三届蓝桥杯大赛省赛试题解压密码(软件类):QaTLL2d7 ,注意区分大小写。 -------------------------------------------------------------------------------- /BlueBridgeCup/Subject/真题分析.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/BlueBridgeCup/Subject/真题分析.xlsx -------------------------------------------------------------------------------- /Gym/100049A/A - Chemistry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/Gym/100049A/A - Chemistry.pdf -------------------------------------------------------------------------------- /Gym/100049B/B - Bound Found.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/Gym/100049B/B - Bound Found.pdf -------------------------------------------------------------------------------- /Interview/JD/JD5-小球的距离/solve.py: -------------------------------------------------------------------------------- 1 | class Balls: 2 | def calcDistance(self, A, B, C, D): 3 | return (A + B + C + D) * 3 4 | -------------------------------------------------------------------------------- /Interview/JD/JD6-保卫方案/solve.py: -------------------------------------------------------------------------------- 1 | def solve(): 2 | n = int(input()) 3 | mountains = list(map(int, input().split())) 4 | 5 | 6 | if __name__ == '__main__': 7 | solve() 8 | -------------------------------------------------------------------------------- /LeetCode/Problems/1. Two Sum/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/LeetCode/Problems/1. Two Sum/solve.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/1128. Number of Equivalent Domino Pairs/code.cpp: -------------------------------------------------------------------------------- 1 | class Solution { 2 | public: 3 | int numEquivDominoPairs(vector>& dominoes) { 4 | 5 | } 6 | }; 7 | -------------------------------------------------------------------------------- /LeetCode/Problems/148. Sort List/images/格局打开.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/LeetCode/Problems/148. Sort List/images/格局打开.jpg -------------------------------------------------------------------------------- /LeetCode/Problems/189. Rotate Array/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/LeetCode/Problems/189. Rotate Array/code.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/205. Isomorphic Strings/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/LeetCode/Problems/205. Isomorphic Strings/code.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/231. Power of Two/solve.py: -------------------------------------------------------------------------------- 1 | class Solution: 2 | def isPowerOfTwo(self, n: int) -> bool: 3 | return 0 < n == (n & -n) 4 | -------------------------------------------------------------------------------- /LeetCode/Problems/33. Search in Rotated Sorted Array/python.py: -------------------------------------------------------------------------------- 1 | from typing import List 2 | 3 | 4 | class Solution: 5 | def search(self, nums: List[int], target: int) -> int: -------------------------------------------------------------------------------- /LeetCode/Problems/330. Patching Array/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/LeetCode/Problems/330. Patching Array/code.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/342. Power of Four/solve.py: -------------------------------------------------------------------------------- 1 | class Solution: 2 | def isPowerOfFour(self, n: int) -> bool: 3 | return (n & -n) == n > 0 == (n & 0xaaaaaaaa) 4 | -------------------------------------------------------------------------------- /LeetCode/Problems/739. Daily Temperatures/code.cpp: -------------------------------------------------------------------------------- 1 | class Solution { 2 | public: 3 | vector dailyTemperatures(vector& T) { 4 | 5 | } 6 | }; 7 | -------------------------------------------------------------------------------- /LeetCode/Problems/85. Maximal Rectangle/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/LeetCode/Problems/85. Maximal Rectangle/code.cpp -------------------------------------------------------------------------------- /LeetCode/Problems/894. All Possible Full Binary Trees/README.md: -------------------------------------------------------------------------------- 1 | [894. 所有可能的满二叉树](https://leetcode-cn.com/problems/all-possible-full-binary-trees/) 2 | 3 | -------------------------------------------------------------------------------- /LeetCode/SQL/175. Combine Two Tables/solve.sql: -------------------------------------------------------------------------------- 1 | select FirstName, LastName, City, State from Person left join Address on Person.PersonId = Address.PersonId; -------------------------------------------------------------------------------- /LeetCode/SQL/176. Second Highest Salary/solve.sql: -------------------------------------------------------------------------------- 1 | select ifnull((select distinct Salary from Employee order by Salary desc limit 1 offset 1), null) as SecondHighestSalary; -------------------------------------------------------------------------------- /LeetCode/SQL/182. Duplicate Emails/solve.sql: -------------------------------------------------------------------------------- 1 | select 2 | Email 3 | from 4 | Person 5 | group by 6 | Email 7 | having 8 | count(Email) > 1; -------------------------------------------------------------------------------- /LeetCode/SQL/627. Swap Salary/solve.sql: -------------------------------------------------------------------------------- 1 | update salary 2 | set sex = case sex 3 | when 'm' then 'f' 4 | when 'f' then 'm' 5 | end; -------------------------------------------------------------------------------- /LeetCode/Shell/192. Word Frequency/solve.sh: -------------------------------------------------------------------------------- 1 | cat words.txt | xargs -n 1 | sort | uniq -c | sort -nr | awk '{print $2" "$1}' -------------------------------------------------------------------------------- /LeetCode/Shell/193. Valid Phone Numbers/solve.sh: -------------------------------------------------------------------------------- 1 | grep -P '^([0-9]{3}-|\([0-9]{3}\) )[0-9]{3}-[0-9]{4}$' file.txt -------------------------------------------------------------------------------- /LeetCode/Shell/195. Tenth Line/solve.sh: -------------------------------------------------------------------------------- 1 | sed -n "10p" file.txt -------------------------------------------------------------------------------- /PAT/乙级/1017 A除以B/solve.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | a, b = map(int, input().split()) 3 | print(a // b, a % b) 4 | -------------------------------------------------------------------------------- /PAT/甲级/1001 A+B Format/code.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | a, b = map(int, input().split()) 3 | print(format(a + b, ',')) 4 | -------------------------------------------------------------------------------- /PAT/甲级/1107 Social Clusters/code.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | -------------------------------------------------------------------------------- /POJ/1001.Exponentiation/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/1001.Exponentiation/code.exe -------------------------------------------------------------------------------- /POJ/1001.Exponentiation/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/1001.Exponentiation/gmon.out -------------------------------------------------------------------------------- /POJ/1062.昂贵的聘礼/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/1062.昂贵的聘礼/code.exe -------------------------------------------------------------------------------- /POJ/1062.昂贵的聘礼/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/1062.昂贵的聘礼/gmon.out -------------------------------------------------------------------------------- /POJ/1062.昂贵的聘礼/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/1062.昂贵的聘礼/graph.png -------------------------------------------------------------------------------- /POJ/1125.Stockbroker Grapevine/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/1125.Stockbroker Grapevine/code.exe -------------------------------------------------------------------------------- /POJ/1125.Stockbroker Grapevine/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/1125.Stockbroker Grapevine/gmon.out -------------------------------------------------------------------------------- /POJ/1125.Stockbroker Grapevine/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/1125.Stockbroker Grapevine/graph.png -------------------------------------------------------------------------------- /POJ/1502.MPI Maelstrom/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/1502.MPI Maelstrom/code.exe -------------------------------------------------------------------------------- /POJ/1502.MPI Maelstrom/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/1502.MPI Maelstrom/gmon.out -------------------------------------------------------------------------------- /POJ/1511.Invitation Cards/code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/1511.Invitation Cards/code.exe -------------------------------------------------------------------------------- /POJ/1511.Invitation Cards/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/1511.Invitation Cards/gmon.out -------------------------------------------------------------------------------- /POJ/1511.Invitation Cards/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/1511.Invitation Cards/graph.png -------------------------------------------------------------------------------- /POJ/3981. 字符串替换/c++.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/POJ/3981. 字符串替换/c++.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Matrix Studio - Algorithm And Data Structure 2 | 3 | 本学习仓库由 Matrix 工作室制作并开发,包括算法与数据结构的学习路线和各种题解。 4 | 5 | -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Greedy/02.背包问题.py: -------------------------------------------------------------------------------- 1 | def fractionalBackpack(): 2 | pass 3 | -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/KMP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/Algorithm/KMP/README.md -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/BubbleSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/Algorithm/Sort/BubbleSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/BucketSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/Algorithm/Sort/BucketSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/CountSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/Algorithm/Sort/CountSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/HeapSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/Algorithm/Sort/HeapSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/InsertSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/Algorithm/Sort/InsertSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/MergeSort/NoteBook.md: -------------------------------------------------------------------------------- 1 | 归并排序的额外空间复杂度可以变成O(1),归并排序内部缓存法,但是非常难。 -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/MergeSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/Algorithm/Sort/MergeSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/Noteook.md: -------------------------------------------------------------------------------- 1 | | sort algorithm | stability | 2 | |:--:|:--:| 3 | |冒泡排序|可以稳定| 4 | |插入排序|| 5 | |归并排序|| 6 | |快速排序|| -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/QuickSort/NoteBook.md: -------------------------------------------------------------------------------- 1 | 快速排序可以做到稳定性问题,01 stable sort。 -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/QuickSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/Algorithm/Sort/QuickSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/RadixSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/Algorithm/Sort/RadixSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/SelectSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/Algorithm/Sort/SelectSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/ShellSort/动图演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/Algorithm/Sort/ShellSort/动图演示.gif -------------------------------------------------------------------------------- /算法与数据结构之美/Algorithm/Sort/排序算法.eddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/Algorithm/Sort/排序算法.eddx -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Graph/ShortestPaths/最短路径.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/DataStructure/Graph/ShortestPaths/最短路径.ppt -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Stack/Stack.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/DataStructure/Stack/Stack.pptx -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Stack/images/shareStack.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/DataStructure/Stack/images/shareStack.gif -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Stack/images/shareStack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/DataStructure/Stack/images/shareStack.png -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Stack/images/stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/DataStructure/Stack/images/stack.png -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Stack/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/DataStructure/Stack/stack.cpp -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Stack/共享栈/shareStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/DataStructure/Stack/共享栈/shareStack.cpp -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/Tree/BinaryTree/README.md: -------------------------------------------------------------------------------- 1 | ## 二叉树 2 | 3 | -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/UnionFindSet/README.md: -------------------------------------------------------------------------------- 1 | N个样本,如果findhead的调用次数>O(N),单次findhead的时间复杂度O(1) -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/线性表/LinkedList/template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/DataStructure/线性表/LinkedList/template.cpp -------------------------------------------------------------------------------- /算法与数据结构之美/DataStructure/线性表/LinkedList/template.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/DataStructure/线性表/LinkedList/template.exe -------------------------------------------------------------------------------- /算法与数据结构之美/数论/卢卡斯定理/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koking0/Algorithm/927389800bfcdace624875b088f99435790bf8cb/算法与数据结构之美/数论/卢卡斯定理/README.md --------------------------------------------------------------------------------