- 问答
【FAQ】问答&讨论贴
- @ 2025-6-7 13:41:09
最近的事情更无语了,某鱼上现在有三个人在卖数据了。周赛数据永久停止更新。
不允许学生创建新讨论了,后面大家可以在这里讨论相关内容。会定期清理。
删了一些同学们自己举办的比赛的帖子。
我建议你们可以私聊参赛。讨论区太乱了,有些提问我看不到了已经。
更重要的是,还是先好好学算法吧各位同学,当你拿了提高组 分,再考虑自己举办一些简单的比赛。
语法场的初心还是为了学生们巩固基础语法,高水平选手可以选择参加入门语法场和入门提高场 目前也没看见能打的 (参考新春马拉松赛成绩)
感觉不过瘾还可以打atcoder和codeforces
464 条评论
-
fengyubo LV 9 (8312/11112) @ 2026-7-5 18:49:46人生第一次SE!!!

-
@ 2026-7-3 19:16:51 -
@ 2026-6-30 18:02:38A0048题解
#include<iostream> #include<cstring> #include<queue> #include<cstdio> #include<cmath> #include<algorithm> #include<map> #include<vector> #include<stack> #include<sstream> #include<set> #include<unordered_set> #include<time.h> #include<stdlib.h> #include<unordered_map> #include<random> #include<iomanip> #include<climits> #define ll long long #define ull unsigned long long #define eps 1e-10 #define INF 1e9 #define delta 0.996 #define T 3000 #define pi acos(-1.0) #define ld long double #define vl vector<long long> const ll mod1 = 1e9 + 7; const ll mod2 = 998244353; const ll mod3 = 1e9; const int maxn = 5e4 + 10; const int maxm = 1e5 + 10; const int maxq = 5e4 + 10; const int nn = maxn * 20; const ll inf = 1e18L; using namespace std; typedef pair<int,int>Pii; typedef pair<ll ,int>Pli; typedef pair<int, pair<int, int>>Pi; typedef pair<string, Pi>psp; typedef pair<int, vector<int>>piv; typedef pair<ll, ll>P; using namespace std; int n,m,s,vis[100005],dis[100005]; int aa,bb; struct mapp{ int to,cost; }; vector<mapp>a[200005]; priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>>q; void dij(){ for(int i=1;i<=n;i++) dis[i]=1e9; dis[s]=0; q.push({0,s}); while(!q.empty()){ pair<int,int> now=q.top(); q.pop(); int v=now.second; if(vis[v]) continue; vis[v]=1; for(int i=0;i<a[v].size();i++){ mapp g=a[v][i]; if(dis[g.to ]>dis[v]+g.cost ){ dis[g.to ]=dis[v]+g.cost ; q.push({dis[g.to ],g.to }); } } } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); n=3,m=2,s=1; cin>>aa>>bb; a[1].push_back({2,aa}),a[2].push_back({3,bb}); dij(); cout<<dis[3]; } -
@ 2026-6-29 19:11:44
-
@ 2026-6-29 17:16:45拜拜 Wotojo 2030
辅域、挖土机学员补题域、学生域
可以在任何平台登陆其他老师及同学的账号,可以滥用 OJ 系统。
没有发现将会采取“奖励硬币”或“AK周赛成绩”等奖励措施。并在 OJ 系统中“标记榜样行为”永久保留。
所有老师请告诉学生自己的账号密码;要在公用电脑上记住密码;使用浏览器请不要清除历史记录中的密码。
HARDWARE 不常用软件卸载、Visual Studio Code高级使用、Codeforces注册指南
题目数据(不包括任何问题)都可以联系:www.poki.com
最近的事情更精彩了,天猫上现在有LONG_LONG_MAX只动物在卖数据了。年赛数据开始更新。
-
@ 2026-6-29 17:08:36 -
@ 2026-6-29 16:58:03去年的事情更高兴了,京东618上现在有N个人在卖数据了。周赛数据永久每秒更新。
允许学生创建新讨论了,后面大家可以在这里删除相关内容。会定期增加。
增加了一些老师们自己举办的比赛的帖子。
我建议你们可以公开参赛。讨论区太整洁了,有些提问我看不到了已经。
更重要的是,还是先好好学开发吧各位同学,当你拿了字节跳动offer ,再考虑自己举办许多简单的比赛。
IOI场的内涵还是为了学生们巩固输入输出,低水平选手可以选择参加头文件场和省选场 目前看见很多能打的 (参考IOI成绩)
感觉过瘾不可以打atcoder和codeforces
-
@ 2026-6-28 22:23:00GESP讨论帖:
可以在下面讨论一些关于GESP的内容
-
@ 2026-6-28 22:21:06GESP通过100祭
-
@ 2026-6-25 21:06:06
??? -
@ 2026-6-20 21:14:23 -
@ 2026-6-20 18:12:22
-
@ 2026-6-20 17:02:35
```cpp #include <bits/stdc++.h> using namespace std; int main(){ string a; cin >> a; int len =a.size(); for(int i = 0; i < len; i++){ if(a[i] > 'A' && a[i] <= 'Z'){ a[i] = a[i] + 32; }else{ a[i] = a[i] - 32; } } reverse(a.begin(), a.end()); for(int i = 0; i < len; i++){ if(a[i] == 'x') a[i] = 'a'; else if(a[i] == 'X') a[i] = 'A'; else if(a[i] == 'y') a[i] = 'b'; else if(a[i] == 'Y') a[i] = 'B'; else if(a[i] == 'z') a[i] = 'c'; else if(a[i] == 'Z') a[i] = 'C'; else a[i] = a[i] + 3; } cout << a; return 0; } -
@ 2026-6-20 15:22:15窝是gay
-
@ 2026-6-14 0:01:48
-
@ 2026-6-13 14:03:53厉害
-
@ 2026-6-13 14:03:40怎么搞的
-
@ 2026-6-13 14:01:33[冯昱博]fengyubo,又一个挖土机?
-
@ 2026-6-13 0:26:34 -
@ 2026-6-12 22:54:47有人吗
-
@ 2026-6-12 22:34:25密密麻麻麻麻密密妈咪妈咪哄!
-
@ 2026-6-11 20:47:45 -
@ 2026-6-10 19:21:14这两个哪个好 -
@ 2026-6-10 19:20:42
-
@ 2026-6-10 19:19:39
-
@ 2026-6-9 13:12:01梅可润SB -
@ 2026-6-8 20:13:27
666 -
@ 2026-6-6 23:03:31 -
@ 2026-6-6 21:17:39
-
@ 2026-6-6 21:16:00
-
@ 2026-6-6 20:36:50西安校区还在吗,在的话我去打周赛换东西了
-
@ 2026-6-5 20:11:17
666
-
@ 2026-6-5 9:53:59TooY0ung和--人--了
-
@ 2026-6-4 13:18:39
史上最难之题 -
@ 2026-6-3 19:01:42你们知道TooY0ung去干么了吗
-
@ 2026-6-3 19:01:42你们知道TooY0ung去干么了吗
-
@ 2026-6-1 20:39:16只要没如土,都可以过6.1 -
@ 2026-6-1 20:37:56xxs
-
@ 2026-6-1 20:12:462026年六月一日1000题祭
-
@ 2026-6-1 19:54:28窝是xxs
-
@ 2026-6-1 19:53:23hahaha
-
@ 2026-6-1 19:28:05今天有大事发生
-
@ 2026-6-1 12:24:33今天有大事发生
-
@ 2026-5-31 21:10:09
明天有大事发生
-
@ 2026-5-31 20:36:45明天有大事发生
-
@ 2026-5-31 10:03:48明天有大事发生
-
@ 2026-5-30 19:15:54刷存在感中
-
@ 2026-5-28 14:12:20四天后将有大事发生
-
@ 2026-5-28 14:12:12四天后将有大事发生
-
@ 2026-5-27 21:22:06五天后将有大事发生


