2024-10-10

This commit is contained in:
2024-10-10 12:56:56 +08:00
commit 7b347c848a
2648 changed files with 643965 additions and 0 deletions

View File

@@ -0,0 +1,125 @@
<html>
<head>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>New Problem</title>
</head>
<body leftmargin="30">
<center>
<?php require_once("../include/db_info.inc.php");?>
<?php require_once("admin-header.php");
if (!(isset($_SESSION[$OJ_NAME.'_'.'administrator']))){
echo "<a href='../loginpage.php'>Please Login First!</a>";
exit(1);
}
?>
<?php
include_once("kindeditor.php") ;
?>
<?php require_once("../include/simple_html_dom.php");
$url=$_POST ['url'];
if (!$url) $url=$_GET['url'];
if (strpos($url, "http") === false){
echo "Please Input like https://loj.ac/problem/1";
exit(1);
}
if (false) {
$url = stripslashes ( $url);
}
$loj_id=intval(substr($url,23));
echo $loj_id;
$baseurl=substr($url,0,strrpos($url,"/")+1);
//echo $baseurl;
$html = file_get_html($url);
// foreach($html->find('img') as $element)
// $element->src=$baseurl.$element->src;
$element=$html->find('h1',0);
$title=trim($element->plaintext);
$element=$html->find('span',0);
$mlimit=$element->plaintext;
$mlimit=substr($mlimit, strpos($mlimit, "")+3);
$mlimit=substr($mlimit,0,strpos($mlimit, 'MiB')-1);
$element=$html->find('span',1);
$tlimit=$element->plaintext;
$tlimit=substr($tlimit, strpos($tlimit, "")+3);
$tlimit=substr($tlimit,0,strpos($mlimit, ' ms')-3);
$tlimit/=1000;
//$mlimit/=1000;
//echo "mlimit:$mlimit<br>";
//echo "tlimit:".$tlimit;
function mjpage($raw){
$ret=str_replace('<span class="mjpage">','\(',$raw);
$ret=str_replace('</span>','\)',$ret);
return $ret;
}
$element=$html->find('div[class=ui bottom attached segment font-content]',0);
$descriptionHTML=mjpage($element->outertext);
$element=$html->find('div[class=ui bottom attached segment font-content]',1);
$inputHTML=mjpage($element->outertext);
$element=$html->find('div[class=ui bottom attached segment font-content]',2);
$outputHTML=mjpage($element->outertext);
$element=$html->find('code[class=lang-plain]',0);
$sample_input=$element->innertext;
$element=$html->find('code[class=lang-plain]',1);
$sample_output=$element->innertext;
$element=$html->find('div[class=ui bottom attached segment font-content]',4);
$hintHTML=mjpage($element->outertext);
$element=$html->find('div[class=ui bottom attached segment]',1);
$sourceHTML=$element->outertext;
?>
<form method=POST action="problem_add_loj.php">
<input type=submit value=Submit name=submit>
<p align=center><font size=4 color=#333399>Add a Problem</font></p>
<input type="hidden" name=problem_id value="New Problem">
<input type="text" name="loj_id" value="<?php echo $loj_id?>">
<p align=left>Problem Id:&nbsp;&nbsp;New Problem</p>
<p align=left>Title:<input type=text name=title size=71 value="<?php echo $title?>"></p>
<p align=left>Time Limit:<input type=text name=time_limit size=20 value="<?php echo $tlimit?>">S</p>
<p align=left>Memory Limit:<input type=text name=memory_limit size=20 value="<?php echo $mlimit?>">MByte</p>
<p align=left>Description:<br><!--<textarea rows=13 name=description cols=80></textarea>-->
<p align=left>Description:<br>
<textarea class="kindeditor" rows=13 name=description cols=80><?php echo $descriptionHTML;?></textarea>
</p>
<p align=left>Input:<br>
<textarea class="kindeditor" rows=13 name=input cols=80><?php echo $inputHTML;?></textarea>
</p>
</p>
<p align=left>Output:<br><!--<textarea rows=13 name=output cols=80></textarea>-->
<textarea class="kindeditor" rows=13 name=output cols=80><?php echo $outputHTML;?></textarea>
</p>
<p align=left>Sample Input:<br><textarea rows=13 name=sample_input cols=80><?php echo $sample_input?></textarea></p>
<p align=left>Sample Output:<br><textarea rows=13 name=sample_output cols=80><?php echo $sample_output?></textarea></p>
<p align=left>Test Input:<br><textarea rows=13 name=test_input cols=80></textarea></p>
<p align=left>Test Output:<br><textarea rows=13 name=test_output cols=80></textarea></p>
<p align=left>Hint:<br>
<textarea class="kindeditor" rows=13 name=hint cols=80><?php echo $hintHTML?></textarea>
</p>
<p>SpecialJudge: N<input type=radio name=spj value='0' checked>Y<input type=radio name=spj value='1'></p>
<p align=left>Source:<br><textarea name=source rows=1 cols=70>LibreOJ<?php echo $sourceHTML?></textarea></p>
<p align=left>contest:
<select name=contest_id>
<?php $sql="SELECT `contest_id`,`title` FROM `contest` WHERE `start_time`>NOW() order by `contest_id`";
$result=pdo_query($sql);
echo "<option value=''>none</option>";
if (count($result)==0){
}else{
foreach($result as $row)
echo "<option value='{$row['contest_id']}'>{$row['contest_id']} {$row['title']}</option>";
}
?>
</select>
</p>
<div align=center>
<?php require_once("../include/set_post_key.php");?>
</div></form>
<p>
</body></html>