上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
摘要: #include<bits/stdc++.h> using namespace std; #define N 101 int a[N]; void sort_mp() { for(int i=1;i<100;i++) { for(int j=1;j<100;j++) { if(a[j]>a[j+1] 阅读全文
posted @ 2024-01-26 20:59 yeyou26 阅读(17) 评论(0) 推荐(0)
摘要: //lg 2455 #include<bits/stdc++.h> using namespace std; const double eps = 0.000001; const int N = 105; double a[N][N]; int n; int nowline=1;//存储当前行 vo 阅读全文
posted @ 2024-01-26 20:59 yeyou26 阅读(17) 评论(0) 推荐(0)
摘要: //lg 3804 //Copyright yeyou26 #include<bits/stdc++.h> using namespace std; //注意:这道题不是纯纯的后缀自动机,main函数有一点额外处理 #define ll long long #define N (int(2e6+6) 阅读全文
posted @ 2024-01-26 20:58 yeyou26 阅读(20) 评论(0) 推荐(0)
摘要: //lg p3812 #include<bits/stdc++.h> using namespace std; #define ll unsigned long long ll d[100]; int n; void Insert(ll x) { for(int i=62;i>=1;i--) { i 阅读全文
posted @ 2024-01-26 20:58 yeyou26 阅读(24) 评论(0) 推荐(0)
摘要: //lg p3809 sa模板题 //Copyright yeyou26 //额外数据测试lcp //input:aabaaaab //output:sa:4 5 6 1 7 2 8 3 // lcp:0 3 2 3 1 2 0 1 #include<bits/stdc++.h> using nam 阅读全文
posted @ 2024-01-26 20:56 yeyou26 阅读(24) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页