这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
# 我觉得我的理解没有问题啊! ```cpp #include using namespace std; //variables and structions ll n, m, q; ll a[1001]; ll f[1001][1001]; //functions //main function int main()…
[评测链接](https://www.luogu.com.cn/record/161705605) ## Code ```cpp #include #define ll long long using namespace std; ll n, m; struct C { ll id, dir; string name;…
#100pts code 但错最后一组 ```cpp #include #define ll long long using namespace std; struct node { int v, h, ans;//h 取余, ans 实际 friend bool operator n1.ans; } }; int n…
在讨论《80pts求大佬调》回复:
提交上去的没有freopen和fclose
## 这是80pts的程序 ```cpp #include #define int long long #define mm(a, b) memset(a, b, sizeof(a)) using namespace std; int n, scnt = 0; string server[1001]; int ccnt…
在讨论《fabs都能错?大佬求助!》回复:
```cpp #include using namespace std; double a; int main() { cin >> a; printf("%.2lf", fabs(a)); return 0; } ``` 这样就可以过了 保留两位小数,还有头文件没有问号 [AC记录](https://www.luog…
在讨论《求助!玄学问题还是什么?》回复:
@[luoguandy](/user/1011214) 关注哩
在讨论《求助!玄学问题还是什么?》回复:
@[luoguandy](/user/1011214) 还是错两组awa
## 这是我去年这时候写的 ```cpp //define and head file #include //万能头文件 using namespace std; //variables and structions int n, x, a[100005]; long long ans; //functions //m…
在讨论《求助,编译错误》回复:
好的,谢谢,此帖结
在讨论《二进制枚举 40pts 求助!》回复:
@[___A__](/user/275860) 知道了,试过了,复杂度太高,已用另一种方法,此帖结
在讨论《二进制枚举 40pts 求助!》回复:
@[creating001](/user/854522) 测试了下,过不了
```cpp //define and head file #include //万能头文件 using namespace std; //variables and structions long long n, m, cnt = 0; long long a[45]; //functions //main func…
```cpp //define and head file #include //万能头文件 using namespace std; //variables and structions int n, m, q; vector vec[100005]; //functions //main function(run)…
# 首先代码是这样的 ```cpp //define and head file #include //万能头文件 using namespace std; //variables and structions int n; struct node { string name; int born, id; }a[105…
# 哪位大佬帮忙看一下 ```cpp #include using namespace std; int a,n,m,x; int main(){ cin>>a>>n>>m>>x; int upl=a; int upn=(m-a)/n; int down=(m-a)/n; int ans=upl; for(int i=…