摘要:
#include <iostream> #include <cstring> using namespace std; const int N=2e5+10; int a[N],res[N]; int t; int main(){ cin>>t; while(t--){ int n; cin>>n; 阅读全文
摘要:
今天在写题目的时,对的思路但是一直卡了一个点,后来经过查找原来是floyd算法忽略的一个小细节,以前从来还没有注意到这个小细节,现在把这个细节记录下来 这是原本的代码 for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ for(int k=1;k<=n;k++ 阅读全文
摘要:
学生打卡系统加0.5 求一个数组中所有子数组和的最大值加1 地铁系统加0.5 分页查询加0.5 阅读全文