-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathhelp.html
More file actions
82 lines (73 loc) · 4.4 KB
/
help.html
File metadata and controls
82 lines (73 loc) · 4.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>通关指南 OI 教练模拟器</title>
<link rel="stylesheet" href="styles.css">
<style>
.doc{max-width:900px;margin:24px auto;padding:18px;background:#fff;border-radius:8px}
.doc h2{margin-top:20px;color:#333;border-bottom:2px solid #eef4fb;padding-bottom:6px}
.doc h1{color:#1976d2}
.muted{color:#666}
ul.guide{padding-left:24px;line-height:1.8}
ul.guide li{margin-bottom:8px}
strong{color:#d32f2f}
</style>
</head>
<body>
<div class="container">
<div class="doc">
<h1>如果你遇到困难,请详细阅读文档</h1>
<p class="muted">本页面基于项目文档整理,介绍核心机制与常见失误,帮助你更快上手。</p>
<h2>为什么我钱不够花?开局与省份</h2>
<ul class="guide">
<li>省份决定初始经费、训练质量与南北方属性:强省经费更高,弱省更低;南北方影响气温分布与极端天气概率。</li>
<li>强省更易出成绩、经费更高。</li>
<li><strong>我们推荐您第一次尝试时选择强省而不是您的省份</strong></li>
</ul>
<h2>他怎么退队了?学生模型</h2>
<ul class="guide">
<li><strong>基础能力</strong>:思维、代码、心理。</li>
<li><strong>知识结构</strong>:数据结构、图论、字符串、数学、DP 五大类,各自有独立数值,并在比赛中参与"知识门槛"判定,如果题目过难,会导致通过概率大幅下降。</li>
<li><strong>压力与舒适</strong>:高压力会降低学习效率、增加退队/生病概率;舒适度受设施与天气影响,进而影响压力与恢复。请平衡你的压力。</li>
<li>如果训练时提示你“强度过大”,那你就要小心了。</li>
</ul>
<h2>为什么我的学生不够强?训练与能力增长</h2>
<ul class="guide">
<li>训练按周执行,可选不同强度;强度越高增长越多,但压力也涨得更快,长期高压会带来退队风险。</li>
<li>能力增益受学生自身、设施(机房/资料库)、训练质量与是否生病等因素影响。</li>
<li>升级设施可以很大提升训练效率、减小压力增幅</li>
<li>集训、刷题和模拟赛均可带来能力提升,但是侧重方面不同,请合理安排。安排不符合学生水平的集训或模拟赛代价很大。</li>
<li>每个学生可能存在天赋,影响各个方面,也会在训练中获得和丧失天赋</li>
<li>集训激发天赋十分有用。</li>
</ul>
<h2>为什么我触发不了特殊事件?声誉</h2>
<ul class="guide">
<li>声誉影响随机事件触发概率与商业活动收入。</li>
<li>高声誉可带来更多正面事件(赞助、合作)</li>
<li>学生退队或主动劝退会损失声誉;良好成绩与商业活动可提升声誉。</li>
</ul>
<h2>钱很快花完?预算与维护</h2>
<ul class="guide">
<li>每周都会有固定开支,注意不要让自己的经费耗尽导致坏结局</li>
<li>外出集训耗资巨大,提升也巨大</li>
<li>你的比赛成绩决定了你能获得的拨款,如果你决定认真培养一人,那就请衡量经费风险。</li>
<li>商业活动和媒体采访等事件也能为你带来收入</li>
</ul>
<h2>为什么我的学生生病了?健康系统</h2>
<ul class="guide">
<li>学生的健康状况受压力与天气影响,压力过大会增加生病概率</li>
<li>生病会大幅降低训练效率,并增加退队概率</li>
<li>升级设施以提升舒适度</li>
</ul>
<div class="modal-actions" style="margin-top:24px;text-align:center">
<a class="btn" href="start.html" style="background:#1976d2;color:white;padding:12px 24px;text-decoration:none;border-radius:6px;display:inline-block">返回开始页面</a>
</div>
</div>
</div>
<footer style="text-align:center;padding:12px 8px;color:#666;font-size:13px;border-top:1px solid #eee;margin-top:18px">
作者 @Dreamers-seve 洛谷: <a href="https://www.luogu.com.cn/user/668972" target="_blank" rel="noopener">https://www.luogu.com.cn/user/668972</a> GitHub: <a href="https://github.com/Dreamersseve/OItrainer" target="_blank" rel="noopener">https://github.com/Dreamersseve/OItrainer</a>
</footer>
</body>
</html>