https://github.com/php/doc-ja/blob/master/README_About_ThisManual.md に移動しました。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/package.xml b/package.xml | |
index 3a12e98..1a65719 100644 | |
--- a/package.xml | |
+++ b/package.xml | |
@@ -66,8 +66,8 @@ | |
<api>1.1.0</api> | |
</version> | |
<stability> | |
- <release>snapshot</release> | |
- <api>snapshot</api> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// | |
// requirement | |
// | |
// - PHP 8 | |
// - nikic/PHP-Parser | |
// | |
require_once('vendor/autoload.php'); |
人にメールを転送しつつ、自分のメールボックスに入れる maildropfilter(1) の設定。
下記では駄目
if (....)
{
https://codeforces.com/contest/1334/problem/A
ゲームの2つの stats - number of play
(np) と number of clear
(nc) は、以下の条件を すべて 満たさなければならない
- A) np は単調増加である
- B) nc は単調増加である
- C) nc の変化量 は np の変化量以下である
https://codeforces.com/contest/1297/problem/B
区間の重なりを O(C+T) で解く方法として、 いもす法 が知られているが、この問題では T が 10^9 に達するため、いもす法では解くことが出来ない。
この問題で数えるべき「区間の重なりの数が1」の区間は、区間の端っことその前後に属する区間の数を数えることで、O(C^2) で数えることができる。
本番ではいもす法では解けないことを理解していたので、区間を重ねてみて冷静に観察すれば解けた... はずである(´ー`; )
fun oneInRange(arr: ArrayList<Pair<Int, Int>>, pos: Int): Boolean {
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import kotlin.math.* | |
fun main() { | |
val firstline = readLine()!!.split(" ") | |
val k = firstline[1].toLong() | |
val arr = readLine()!!.split(" ").map { it.toLong() } | |
var pairlist = mutableListOf<Pair<Long, Int>>() | |
for ((idx, value) in arr.withIndex()) { | |
pairlist.add(Pair(value, idx)) |
コンテスト名そのものにもリンクを貼ってもらえると嬉しいです。
たとえば 「Codeforces Round #555 (Div. 3)」のテキストに、https://codeforces.com/contest/1157 へのリンクを張るという具合です。
バーチャルコンテストへのリンク (*1) もあるとなお嬉しかったりしますが、UI的に微妙になるかもしれない。。
NewerOlder