2016-07-18 16:39:37 +00:00
|
|
|
<?php
|
2022-11-06 02:26:21 +00:00
|
|
|
requireLib('bootstrap5');
|
|
|
|
requirePHPLib('form');
|
|
|
|
requirePHPLib('judger');
|
|
|
|
requirePHPLib('data');
|
2022-03-17 04:00:03 +00:00
|
|
|
|
2022-11-06 02:26:21 +00:00
|
|
|
Auth::check() || redirectToLogin();
|
2022-11-11 23:10:34 +00:00
|
|
|
UOJUser::checkPermission(Auth::user(), 'problems.view') || UOJResponse::page403();
|
2022-04-03 10:18:17 +00:00
|
|
|
|
2022-11-11 23:10:34 +00:00
|
|
|
if (UOJProblem::userCanCreateProblem(Auth::user())) {
|
2022-11-07 05:57:23 +00:00
|
|
|
$default_statement = <<<'EOD'
|
|
|
|
<!-- 题目中如有图片,请点击页面顶部的「应用」菜单,打开「图床」,上传至 S2OJ 图床中。 -->
|
|
|
|
|
|
|
|
## 题目描述
|
|
|
|
|
|
|
|
在此处填写题目描述。
|
|
|
|
|
|
|
|
## 输入格式
|
|
|
|
|
|
|
|
在此处约定输入数据的格式。
|
|
|
|
|
|
|
|
## 输出格式
|
|
|
|
|
|
|
|
在此处说明输入数据的格式要求。
|
|
|
|
|
|
|
|
## 输入输出样例
|
|
|
|
|
|
|
|
### 输入样例 #1
|
|
|
|
|
|
|
|
```text
|
|
|
|
样例 1 的输入内容
|
|
|
|
```
|
|
|
|
|
|
|
|
### 输出样例 #1
|
|
|
|
|
|
|
|
```text
|
|
|
|
样例 1 的输出内容
|
|
|
|
```
|
|
|
|
|
|
|
|
### 样例解释 #1
|
|
|
|
|
|
|
|
样例 1 的解释与说明。
|
|
|
|
|
|
|
|
### 样例 #2
|
|
|
|
|
|
|
|
<!-- 大样例,如无大样例请删除本节。请根据实际情况修改下方的文件名。 -->
|
|
|
|
|
|
|
|
见右侧「附件下载」中的 `ex_data2.in/out`。
|
|
|
|
|
|
|
|
## 数据范围与约定
|
|
|
|
|
|
|
|
<!-- 请根据实际情况修改下方的数据范围。 -->
|
|
|
|
|
|
|
|
- 对于 $50\%$ 的数据,[满足条件(替换此处)]。
|
|
|
|
- 对于 $100\%$ 的数据,[满足条件(替换此处)]。
|
|
|
|
|
|
|
|
如有,在此处填写其他于题意或数据相关的说明。
|
|
|
|
|
|
|
|
EOD;
|
2022-11-06 02:26:21 +00:00
|
|
|
$new_problem_form = new UOJBs4Form('new_problem');
|
2022-11-07 05:57:23 +00:00
|
|
|
$new_problem_form->handle = function () use ($default_statement) {
|
2022-11-06 02:26:21 +00:00
|
|
|
DB::insert([
|
|
|
|
"insert into problems",
|
|
|
|
"(title, uploader, is_hidden, submission_requirement)",
|
|
|
|
"values", DB::tuple(["New Problem", Auth::id(), 1, "{}"])
|
|
|
|
]);
|
|
|
|
$id = DB::insert_id();
|
|
|
|
DB::insert([
|
|
|
|
"insert into problems_contents",
|
|
|
|
"(id, statement, statement_md)",
|
2022-11-07 05:57:23 +00:00
|
|
|
"values", DB::tuple([
|
|
|
|
$id,
|
|
|
|
HTML::purifier()->purify(HTML::parsedown()->text($default_statement)),
|
|
|
|
$default_statement,
|
|
|
|
])
|
2022-11-06 02:26:21 +00:00
|
|
|
]);
|
|
|
|
dataNewProblem($id);
|
|
|
|
};
|
|
|
|
$new_problem_form->submit_button_config['align'] = 'right';
|
|
|
|
$new_problem_form->submit_button_config['class_str'] = 'btn btn-primary';
|
|
|
|
$new_problem_form->submit_button_config['text'] = UOJLocale::get('problems::add new');
|
|
|
|
$new_problem_form->submit_button_config['smart_confirm'] = '';
|
2022-09-24 02:18:55 +00:00
|
|
|
|
2022-11-06 02:26:21 +00:00
|
|
|
$new_problem_form->runAtServer();
|
|
|
|
}
|
|
|
|
|
|
|
|
function getProblemTR($info) {
|
|
|
|
$problem = new UOJProblem($info);
|
|
|
|
|
2022-11-09 13:56:39 +00:00
|
|
|
$html = HTML::tag_begin('tr', ['class' => 'text-center']);
|
|
|
|
$html .= HTML::tag('td', ['class' => $info['submission_id'] ? 'table-success' : ''], "#{$info['id']}");
|
|
|
|
$html .= HTML::tag_begin('td', ['class' => 'text-start']);
|
2022-11-06 02:26:21 +00:00
|
|
|
$html .= $problem->getLink(['with' => 'none']);
|
|
|
|
if ($problem->isUserOwnProblem(Auth::user())) {
|
|
|
|
$html .= ' <span class="badge text-white bg-info">' . UOJLocale::get('problems::my problem') . '</span> ';
|
2016-07-18 16:39:37 +00:00
|
|
|
}
|
2022-11-06 02:26:21 +00:00
|
|
|
if ($info['is_hidden']) {
|
|
|
|
$html .= ' <span class="badge text-bg-danger"><i class="bi bi-eye-slash-fill"></i> ' . UOJLocale::get('hidden') . '</span> ';
|
2016-07-18 16:39:37 +00:00
|
|
|
}
|
2022-11-06 02:26:21 +00:00
|
|
|
if (isset($_COOKIE['show_tags_mode'])) {
|
|
|
|
foreach ($problem->queryTags() as $tag) {
|
|
|
|
$html .= ' <a class="uoj-problem-tag">' . '<span class="badge bg-secondary">' . HTML::escape($tag) . '</span>' . '</a> ';
|
|
|
|
}
|
2016-07-18 16:39:37 +00:00
|
|
|
}
|
2022-11-09 13:56:39 +00:00
|
|
|
$html .= HTML::tag_end('td');
|
2022-11-06 02:26:21 +00:00
|
|
|
if (isset($_COOKIE['show_submit_mode'])) {
|
|
|
|
$perc = $info['submit_num'] > 0 ? round(100 * $info['ac_num'] / $info['submit_num']) : 0;
|
|
|
|
$html .= '<td><a href="/submissions?problem_id=' . $info['id'] . '&min_score=100&max_score=100">×' . $info['ac_num'] . '</a></td>';
|
|
|
|
$html .= '<td><a href="/submissions?problem_id=' . $info['id'] . '">×' . $info['submit_num'] . '</a></td>';
|
|
|
|
$html .= '<td>';
|
|
|
|
$html .= '<div class="progress bot-buffer-no">';
|
|
|
|
$html .= '<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="' . $perc . '" aria-valuemin="0" aria-valuemax="100" style="width: ' . $perc . '%; min-width: 20px;">';
|
|
|
|
$html .= $perc . '%';
|
|
|
|
$html .= '</div>';
|
|
|
|
$html .= '</div>';
|
|
|
|
$html .= '</td>';
|
2022-10-11 02:31:54 +00:00
|
|
|
}
|
2022-11-09 13:56:39 +00:00
|
|
|
if (isset($_COOKIE['show_difficulty'])) {
|
|
|
|
$html .= HTML::tag('td', [], $problem->getExtraConfig('difficulty'));
|
|
|
|
}
|
|
|
|
$html .= HTML::tag('td', [], ClickZans::getCntBlock($problem->info['zan']));
|
|
|
|
$html .= HTML::tag_end('tr');
|
2022-11-06 02:26:21 +00:00
|
|
|
return $html;
|
|
|
|
}
|
2022-10-11 02:31:54 +00:00
|
|
|
|
2022-11-06 02:26:21 +00:00
|
|
|
$cond = [];
|
|
|
|
$search_tag = UOJRequest::get('tag', 'is_string', null);
|
|
|
|
$search_content = UOJRequest::get('search', 'is_string', '');
|
|
|
|
$search_is_effective = false;
|
|
|
|
$cur_tab = UOJRequest::get('tab', 'is_string', 'all');
|
|
|
|
if ($cur_tab == 'template') {
|
|
|
|
$search_tag = "模板题";
|
|
|
|
}
|
|
|
|
if (is_string($search_tag)) {
|
|
|
|
$cond[] = [
|
|
|
|
DB::rawvalue($search_tag), "in", DB::rawbracket([
|
|
|
|
"select tag from problems_tags",
|
|
|
|
"where", ["problems_tags.problem_id" => DB::raw("problems.id")]
|
|
|
|
])
|
|
|
|
];
|
|
|
|
}
|
|
|
|
if ($search_content !== '') {
|
|
|
|
foreach (explode(' ', $search_content) as $key) {
|
|
|
|
if (strlen($key) > 0) {
|
|
|
|
$cond[] = DB::lor([
|
|
|
|
[DB::instr(DB::raw('title'), $key), '>', 0],
|
|
|
|
DB::exists([
|
|
|
|
"select tag from problems_tags",
|
|
|
|
"where", [
|
|
|
|
[DB::instr(DB::raw('tag'), $key), '>', 0],
|
|
|
|
"problems_tags.problem_id" => DB::raw("problems.id")
|
|
|
|
]
|
|
|
|
]),
|
|
|
|
"id" => $key,
|
|
|
|
]);
|
|
|
|
$search_is_effective = true;
|
|
|
|
}
|
2022-10-11 02:31:54 +00:00
|
|
|
}
|
2022-11-06 02:26:21 +00:00
|
|
|
}
|
2022-10-11 02:31:54 +00:00
|
|
|
|
2022-11-06 02:26:21 +00:00
|
|
|
if (isset($_GET['is_hidden'])) {
|
2022-11-06 08:23:08 +00:00
|
|
|
$cond['problems.is_hidden'] = true;
|
2022-11-06 02:26:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Auth::check() && isset($_GET['my'])) {
|
2022-11-06 08:23:08 +00:00
|
|
|
$cond['problems.uploader'] = Auth::id();
|
2022-11-06 02:26:21 +00:00
|
|
|
}
|
|
|
|
|
2022-11-06 08:23:08 +00:00
|
|
|
if (empty($cond)) {
|
2022-11-06 02:26:21 +00:00
|
|
|
$cond = '1';
|
|
|
|
}
|
|
|
|
|
|
|
|
$header = '<tr>';
|
|
|
|
$header .= '<th class="text-center" style="width:5em;">ID</th>';
|
|
|
|
$header .= '<th>' . UOJLocale::get('problems::problem') . '</th>';
|
|
|
|
if (isset($_COOKIE['show_submit_mode'])) {
|
|
|
|
$header .= '<th class="text-center" style="width:4em;">' . UOJLocale::get('problems::ac') . '</th>';
|
|
|
|
$header .= '<th class="text-center" style="width:4em;">' . UOJLocale::get('problems::submit') . '</th>';
|
|
|
|
$header .= '<th class="text-center" style="width:125px;">' . UOJLocale::get('problems::ac ratio') . '</th>';
|
|
|
|
}
|
|
|
|
if (isset($_COOKIE['show_difficulty'])) {
|
|
|
|
$header .= '<th class="text-center" style="width:3em;">' . UOJLocale::get('problems::difficulty') . '</th>';
|
|
|
|
}
|
|
|
|
$header .= '<th class="text-center" style="width:50px;">' . UOJLocale::get('appraisal') . '</th>';
|
|
|
|
$header .= '</tr>';
|
|
|
|
|
|
|
|
$tabs_info = array(
|
|
|
|
'all' => array(
|
|
|
|
'name' => UOJLocale::get('problems::all problems'),
|
|
|
|
'url' => "/problems"
|
|
|
|
),
|
|
|
|
'template' => array(
|
|
|
|
'name' => UOJLocale::get('problems::template problems'),
|
|
|
|
'url' => "/problems/template"
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$pag = new Paginator([
|
|
|
|
'col_names' => ['*'],
|
|
|
|
'table_name' => [
|
|
|
|
"problems left join best_ac_submissions",
|
|
|
|
"on", [
|
|
|
|
"best_ac_submissions.submitter" => Auth::id(),
|
|
|
|
"problems.id" => DB::raw("best_ac_submissions.problem_id")
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'cond' => $cond,
|
|
|
|
'tail' => "order by id asc",
|
|
|
|
'page_len' => 40,
|
|
|
|
'post_filter' => function ($problem) {
|
|
|
|
return (new UOJProblem($problem))->userCanView(Auth::user());
|
2022-09-29 02:10:24 +00:00
|
|
|
}
|
2022-11-06 02:26:21 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
// if ($search_is_effective) {
|
|
|
|
// $search_summary = [
|
|
|
|
// 'count_in_cur_page' => $pag->countInCurPage(),
|
|
|
|
// 'first_a_few' => []
|
|
|
|
// ];
|
|
|
|
// foreach ($pag->get(5) as $info) {
|
|
|
|
// $problem = new UOJProblem($info);
|
|
|
|
// $search_summary['first_a_few'][] = [
|
|
|
|
// 'type' => 'problem',
|
|
|
|
// 'id' => $problem->info['id'],
|
|
|
|
// 'title' => $problem->getTitle()
|
|
|
|
// ];
|
|
|
|
// }
|
|
|
|
// DB::insert([
|
|
|
|
// "insert into search_requests",
|
|
|
|
// "(created_at, remote_addr, type, cache_id, q, content, result)",
|
|
|
|
// "values", DB::tuple([DB::now(), UOJContext::remoteAddr(), 'search', 0, $search_content, UOJContext::requestURI(), json_encode($search_summary)])
|
|
|
|
// ]);
|
|
|
|
// }
|
|
|
|
?>
|
2016-07-18 16:39:37 +00:00
|
|
|
<?php echoUOJPageHeader(UOJLocale::get('problems')) ?>
|
2022-09-24 05:39:55 +00:00
|
|
|
|
2022-09-25 06:16:36 +00:00
|
|
|
<div class="row">
|
2022-10-10 00:18:55 +00:00
|
|
|
|
2022-11-06 02:26:21 +00:00
|
|
|
<!-- left col -->
|
|
|
|
<div class="col-lg-9">
|
2022-10-10 00:18:55 +00:00
|
|
|
|
2022-11-06 02:26:21 +00:00
|
|
|
<!-- title -->
|
|
|
|
<div class="d-flex justify-content-between">
|
|
|
|
<h1>
|
|
|
|
<?= UOJLocale::get('problems') ?>
|
|
|
|
</h1>
|
2022-09-24 06:19:28 +00:00
|
|
|
|
2022-11-11 23:10:34 +00:00
|
|
|
<?php if (isset($new_problem_form)) : ?>
|
2022-11-06 02:26:21 +00:00
|
|
|
<div class="text-end">
|
|
|
|
<?php $new_problem_form->printHTML(); ?>
|
|
|
|
</div>
|
|
|
|
<?php endif ?>
|
2022-09-25 06:16:36 +00:00
|
|
|
|
2022-09-24 02:18:55 +00:00
|
|
|
</div>
|
2022-11-06 02:26:21 +00:00
|
|
|
<!-- end title -->
|
2022-09-24 02:18:55 +00:00
|
|
|
|
2022-11-06 02:26:21 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-4 col-12">
|
|
|
|
<?= HTML::tablist($tabs_info, $cur_tab, 'nav-pills') ?>
|
|
|
|
</div>
|
|
|
|
<div class="text-end p-2 col-12 col-sm-8">
|
|
|
|
<div class="form-check d-inline-block me-2">
|
|
|
|
<input type="checkbox" id="input-show_tags_mode" class="form-check-input" <?= isset($_COOKIE['show_tags_mode']) ? 'checked="checked" ' : '' ?> />
|
|
|
|
<label class="form-check-label" for="input-show_tags_mode">
|
|
|
|
<?= UOJLocale::get('problems::show tags') ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
2022-09-29 02:10:24 +00:00
|
|
|
|
2022-11-06 02:26:21 +00:00
|
|
|
<div class="form-check d-inline-block">
|
|
|
|
<input type="checkbox" id="input-show_submit_mode" class="form-check-input" <?= isset($_COOKIE['show_submit_mode']) ? 'checked="checked" ' : '' ?> />
|
|
|
|
<label class="form-check-label" for="input-show_submit_mode">
|
|
|
|
<?= UOJLocale::get('problems::show statistics') ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-check d-inline-block">
|
|
|
|
<input type="checkbox" id="input-show_difficulty" class="form-check-input" <?= isset($_COOKIE['show_difficulty']) ? 'checked="checked" ' : '' ?> />
|
|
|
|
<label class="form-check-label" for="input-show_difficulty">
|
|
|
|
<?= UOJLocale::get('problems::show difficulty') ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-29 02:10:24 +00:00
|
|
|
</div>
|
2022-09-25 06:16:36 +00:00
|
|
|
|
2022-11-06 02:26:21 +00:00
|
|
|
<?= $pag->pagination() ?>
|
2022-09-26 23:57:01 +00:00
|
|
|
|
2022-11-06 02:26:21 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
$('#input-show_tags_mode').click(function() {
|
|
|
|
if (this.checked) {
|
|
|
|
$.cookie('show_tags_mode', '', {
|
2022-11-10 00:16:48 +00:00
|
|
|
path: '/'
|
2022-11-06 02:26:21 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$.removeCookie('show_tags_mode', {
|
2022-11-10 00:16:48 +00:00
|
|
|
path: '/'
|
2022-11-06 02:26:21 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
location.reload();
|
|
|
|
});
|
|
|
|
$('#input-show_submit_mode').click(function() {
|
|
|
|
if (this.checked) {
|
|
|
|
$.cookie('show_submit_mode', '', {
|
2022-11-10 00:16:48 +00:00
|
|
|
path: '/'
|
2022-11-06 02:26:21 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$.removeCookie('show_submit_mode', {
|
2022-11-10 00:16:48 +00:00
|
|
|
path: '/'
|
2022-11-06 02:26:21 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
location.reload();
|
|
|
|
});
|
|
|
|
$('#input-show_difficulty').click(function() {
|
|
|
|
if (this.checked) {
|
|
|
|
$.cookie('show_difficulty', '', {
|
|
|
|
path: '/'
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$.removeCookie('show_difficulty', {
|
|
|
|
path: '/'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
location.reload();
|
|
|
|
});
|
|
|
|
</script>
|
2022-09-25 06:16:36 +00:00
|
|
|
|
2022-11-06 02:26:21 +00:00
|
|
|
<div class="card my-3">
|
|
|
|
<?=
|
|
|
|
HTML::responsive_table($header, $pag->get(), [
|
|
|
|
'table_attr' => [
|
|
|
|
'class' => ['table', 'uoj-table', 'mb-0'],
|
|
|
|
],
|
|
|
|
'tr' => function ($row, $idx) {
|
|
|
|
return getProblemTR($row);
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?= $pag->pagination() ?>
|
2022-10-10 00:18:55 +00:00
|
|
|
|
2022-10-11 02:31:54 +00:00
|
|
|
</div>
|
2022-11-06 02:26:21 +00:00
|
|
|
<!-- end left col -->
|
|
|
|
|
|
|
|
<!-- right col -->
|
|
|
|
<aside class="col-lg-3 mt-3 mt-lg-0">
|
|
|
|
|
|
|
|
<!-- search bar -->
|
|
|
|
<form method="get" class="mb-3" id="form-problem_search">
|
|
|
|
<div class="input-group mb-3">
|
|
|
|
<input id="search-input" name="search" type="text" class="form-control" placeholder="搜索">
|
|
|
|
<button class="btn btn-outline-secondary" type="submit">
|
|
|
|
<i class="bi bi-search"></i>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<?php if (Auth::check()) : ?>
|
|
|
|
<div class="form-check d-inline-block">
|
|
|
|
<input type="checkbox" name="my" <?= isset($_GET['my']) ? 'checked="checked"' : '' ?> class="form-check-input" id="input-my">
|
|
|
|
<label class="form-check-label" for="input-my">
|
|
|
|
我的题目
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<?php endif ?>
|
2022-11-11 23:10:34 +00:00
|
|
|
<?php if (UOJProblem::userCanManageSomeProblem(Auth::user())) : ?>
|
2022-11-06 02:26:21 +00:00
|
|
|
<div class="form-check d-inline-block ms-2">
|
|
|
|
<input type="checkbox" name="is_hidden" <?= isset($_GET['is_hidden']) ? 'checked="checked"' : '' ?> class="form-check-input" id="input-is_hidden">
|
|
|
|
<label class="form-check-label" for="input-is_hidden">
|
|
|
|
隐藏题目
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<?php endif ?>
|
|
|
|
</form>
|
|
|
|
<script>
|
|
|
|
$('#search-input').val(new URLSearchParams(location.search).get('search'));
|
|
|
|
$('#input-my, #input-is_hidden').click(function() {
|
|
|
|
$('#form-problem_search').submit();
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<!-- sidebar -->
|
|
|
|
<?php uojIncludeView('sidebar') ?>
|
|
|
|
</aside>
|
2022-09-25 06:16:36 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2022-11-10 00:16:48 +00:00
|
|
|
<?php echoUOJPageFooter() ?>
|