摘要:
1 #include<bits/stdc++.h> 2 #define ll long long 3 using namespace std; 4 const int N = 110; 5 6 double dp[N][N * N]; 7 int a[N], b[N]; 8 9 int main() 阅读全文
posted @ 2021-01-11 19:36
LegendN
阅读(107)
评论(0)
推荐(0)
摘要:
1 #include<bits/stdc++.h> 2 #define ll long long 3 using namespace std; 4 const int N = 1e5 + 10; 5 struct node 6 { 7 ll t, x; 8 }a[N]; 9 10 int main( 阅读全文
posted @ 2021-01-11 17:30
LegendN
阅读(85)
评论(0)
推荐(0)
摘要:
1 #include<bits/stdc++.h> 2 #define ll long long 3 using namespace std; 4 5 ll n, m; 6 7 ll powmod(ll base, ll k, ll mod) 8 { 9 ll ans = 1; 10 while(k 阅读全文
posted @ 2021-01-11 10:52
LegendN
阅读(69)
评论(0)
推荐(0)