摘要:
题解: 1 #include <bits/stdc++.h> 2 using namespace std; 3 const double ex = 1e-6; 4 double a[5]; 5 bool iseq(double a, double b) 6 { 7 return fabs(a - b 阅读全文
posted @ 2023-07-11 23:06
上原歩夢
阅读(46)
评论(0)
推荐(0)
摘要:
题解: 1 #include <iostream> 2 #include <algorithm> 3 #include <cstdio> 4 #include <cmath> 5 #include <cstring> 6 #include <vector> 7 #include <map> 8 #i 阅读全文
posted @ 2023-07-11 23:02
上原歩夢
阅读(31)
评论(0)
推荐(0)
摘要:
题解: 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 int main() 5 { 6 string init, result; // 要操作的,预期的 7 string temp; // 记录当前状态 8 cin >> init >> 阅读全文
posted @ 2023-07-11 22:58
上原歩夢
阅读(68)
评论(0)
推荐(0)
摘要:
题解: 思路:将A~L每个字母都枚举一遍(每个字母都有轻和重两种状态),看看是否符合输入数据条件 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 string Left[3], Right[3], Result[3]; 5 6 bool c 阅读全文
posted @ 2023-07-11 22:55
上原歩夢
阅读(50)
评论(0)
推荐(0)