-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path!____template____.php
317 lines (283 loc) · 6.4 KB
/
!____template____.php
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<?php
/**
*
*/
namespace abc000;
if (PHP_OS !== 'Linux') {
// ローカル実行時
ini_set('memory_limit', '512M');
}
const DBGOUT = STDERR;
const SP = ' ';
const LF = "\n";
const YES = 'Yes';
const NO = 'No';
const MOD1000000007 = 10 ** 9 + 7;
const MOD = MOD1000000007;
// 配列を出力するときの区切り
const ANSWER_ARRAY_SEP = LF;// 改行区切り
//const ANSWER_ARRAY_SEP = SP;// 空白区切り
///////////////////////////////////////////////////////////////////
///
/**
* 入力値
*/
class InputValue
{
use StdInputTrait;
public int $N;
public int $K;
public string $S;
public $A;
public $B;
public $C, $D;
public $AB, $CD;
public int $H, $W;
public static function get(): self
{
$input = new self();
[$input->N] = self::inInt(1);
[$input->N, $input->K] = self::inInt(2);
[$input->H, $input->W] = self::inInt(2);
$input->A = self::inInt($input->N);
$input->AB = self::inIntMat($input->N, 2);
[$input->S] = self::inStr(1);
// pp($input);
return $input;
}
}
/**
* 答えを求める
*/
function solve(InputValue $input)
{
$ans = 0;
return $ans;
}
//$start = microtime(true);
output(solve(InputValue::get()));
//p(microtime(true) - $start);
/**
* 出力
* @param int|float|bool|string|array $ans
* @param bool $rawOutput 配列の場合に値をそのまま出力するか
*/
function output($ans, bool $rawOutput = false): void
{
if (is_bool($ans)) {
echo ($ans ? YES : NO) . LF;
return;
}
if (is_array($ans)) {
if (empty($ans)) {
return;
}
$_fn = static function (array $ans) use ($rawOutput): void {
if (!$rawOutput) {
if (is_bool(current($ans))) {
$ans = array_map(static fn ($e) => $e ? YES : NO, $ans);
}
if (is_float(current($ans))) {
$ans = array_map(static fn ($e) => sprintf("%.12f", $e), $ans);
}
}
echo implode(ANSWER_ARRAY_SEP, $ans) . LF;
};
if (is_array(current($ans))) {
// 2次元配列の場合
foreach ($ans as $item) {
$_fn($item);
}
} else {
$_fn($ans);
}
return;
}
if (is_float($ans)) {
echo sprintf("%.12f", $ans) . LF;
return;
}
echo $ans . LF;
}
//////////////////////////////////////////////////////////////////////////////////
///
trait StdInputTrait
{
private static function in(string $format)
{
return fscanf(STDIN, $format);
}
private static function inInt(int $n = 1)
{
return fscanf(STDIN, str_repeat("%d", $n));
}
private static function inStr(int $n = 1)
{
return fscanf(STDIN, str_repeat("%s", $n));
}
private static function inFloat(int $n = 1)
{
return fscanf(STDIN, str_repeat("%f", $n));
}
private static function inIntMat(int $rows, int $cols): array
{
$res = [];
for ($i = 0; $i < $rows; ++$i) {
$res[] = self::inInt($cols);
}
return $res;
}
private static function inIntRow(int $rows): array
{
$res = [];
for ($i = 0; $i < $rows; ++$i) {
[$res[]] = self::inInt(1);
}
return $res;
}
/**
* @param string|null $sep
* @return string|array
*/
private static function readline(string $sep = null)
{
if (empty($sep)) {
return trim(fgets(STDIN));
}
return explode($sep, trim(fgets(STDIN)));
}
private static function readlineInt(string $sep = ' '): array
{
return array_map(fn ($e) => (int)$e, explode($sep, trim(fgets(STDIN))));
}
private static function readlineFloat(string $sep = ' '): array
{
return array_map(fn ($e) => (float)$e, explode($sep, trim(fgets(STDIN))));
}
}
/**
* デバッグ用出力
* @param ...$values
*/
function p(...$values): void
{
$o = '';
$sep = '';
foreach ($values as $value) {
if (is_array($value)) {
// キーは出力しない
// 2次元配列まで
if (is_array(current($value))) {
$o .= (empty($sep) ? '' : PHP_EOL);
foreach ($value as $item) {
$o .= '| ' . implode(',', $item) . ' |' . PHP_EOL;
}
$sep = '';
} else {
$o .= $sep . '[' . implode(',', $value) . ']';
$sep = ', ';
}
} else {
$o .= $sep . $value;
$sep = ', ';
}
}
$o .= (empty($sep) ? '' : PHP_EOL);
fwrite(DBGOUT, $o);
}
/**
* デバッグ用出力
* @param ...$values
*/
function pp(...$values): void
{
foreach ($values as $value) {
$o = print_r($value, true);
if (!is_array($value) && !is_object($value)) {
$o .= PHP_EOL;
}
fwrite(DBGOUT, $o);
}
}
/**
* デバッグ用出力
* @param int[] ...$values
*/
function pb(...$values): void
{
$o = '';
$sep = '';
foreach ($values as $value) {
$o .= $sep . sprintf("%0b", $value);
$sep = ', ';
}
$o .= (empty($sep) ? '' : PHP_EOL);
fwrite(DBGOUT, $o);
}
/**
* デバッグ用出力
* @param int[] ...$values
*/
function pb8(...$values): void
{
$o = '';
$sep = '';
foreach ($values as $value) {
$o .= $sep . sprintf("%08b", $value);
$sep = ', ';
}
$o .= (empty($sep) ? '' : PHP_EOL);
fwrite(DBGOUT, $o);
}
/**
* デバッグ用出力
* @param int[] ...$values
*/
function pb16(...$values): void
{
$o = '';
$sep = '';
foreach ($values as $value) {
$o .= $sep . sprintf("%016b", $value);
$sep = ', ';
}
$o .= (empty($sep) ? '' : PHP_EOL);
fwrite(DBGOUT, $o);
}
/**
* 値の入れ替え
* @param &$a
* @param &$b
*/
function swap(&$a, &$b): void
{
$tmp = $a;
$a = $b;
$b = $tmp;
}
/**
* 整数除算切り上げ
* @param int $x
* @param int $y
* @return int
*/
function intdiv_ceil(int $x, int $y): int
{
return intdiv($x + $y - 1, $y);
}
function change_max(&$a, $b): bool
{
if ($a < $b) {
$a = $b;
return true;
}
return false;
}
function change_min(&$a, $b): bool
{
if ($a > $b) {
$a = $b;
return true;
}
return false;
}