Clarifications


Task Name Username Clarifications Response Public Created time Modified time
hitachi_admin
報酬の値r(t)とスコアに関する記述を追加
報酬の値r(t)とスコアに関する記述を追加しました。

具体的には以下の内容となります:
- 報酬の値r(t) および それらの和は小数で計算されます。
- スコアは整数値であり、スコア計算の最後に床関数を適用することで整数に変換しています。(このスコアと相対評価スコアは異なります。)
Yes
hitachi_admin
N_jobの制約に関する修正
制約とテストケースのパラメータ記述に対して一部修正を行いました。

テストケースのパラメータ(全ジョブの数):
修正前: 少(250)・中程度(500)・多い(1000)
修正後: 少(250 ≦ N_job ≦ 253)・中程度(500 ≦ N_job ≦ 503)・多い(1000 ≦ N_job ≦ 1003)

N_jobに関する制約:
修正前: 250 ≦ N_job ≦ 1000
修正後: 250 ≦ N_job ≦ 1003

テストケース自体に変更はありません。

この修正はジョブ間の依存関係に起因するものとなります。
Yes
A - Scheduling of Agricultural Machinery Sharing siman
報酬関数の制御点の制約の中に `1 ≤ t1_reward` とありますが、時刻が 0 のケースが生成されているように思えますがこれは記載の間違いでしょうか。

開始点を生成する部分で `begin = random.randint(0, args.t_max-dur)` とあるので begin が 0 のケースが発生するように見えます。
ご指摘ありがとうございます。
端点(=報酬0となる点)の時刻に関しては 時刻 0 と T_max+1を取ることがあります。
制約の記述を修正いたしました。
Yes
B - Dynamic Scheduling of Agricultural Machinery Sharing siman
基本天候区間の長さの制約として `T_weather =10` とありますが、テスケースのコードを見る限り T_max を割り切れる整数をランダムに返しているように見えます。これは記載が間違っているのでしょうか、それともテストケース生成コードのほうでしょうか。
制約の記述を修正しました。
Yes
sugarrr
ライセンスについて
#include<atcoder/all>は使ってよいですか?
使用可能です。
AC Library はパブリックドメイン (CC0) として公開されているので、使用に関してライセンス上の問題はありません。
(ライセンス文: https://github.com/atcoder/ac-library/blob/master/atcoder/LICENSE )
 
[ENGLISH]
Question: Regarding licences, is it allowed to use #include<atcoder/all> ?

Answer: AC Library is allowed to use, and there is no license issues since it is distributed as a public domain software (CC0). 
(License text: https://github.com/atcoder/ac-library/blob/master/atcoder/LICENSE )
Yes
A - Scheduling of Agricultural Machinery Sharing spady
制約:入力1でN_workersの表記が 1 <= N_workers 10となっていますが1 <= N_workers <= 10ということですか?
はい。<= の記述が抜けておりましたのでA, B両方について修正いたしました。

[ENGLISH]
Question: In the Constraint section for Input 1, it says "1 <= N_workers 10". Does that mean "1 <= N_workers <= 10" ? 

Answer: Yes. "<=" is missing between "N_workers" and "10". We have corrected that error for both A and B.
Yes
shibh308
コンテストに関するアイデア以外の情報、例えばツールの使い方やビジュアライザの動かし方・問題文に対する感想・疑問などをSNS上で共有する事は可能でしょうか?
可能です。

[ENGLISH]
Question:Is it allowed to share information other than ideas about the contest itself, such as how to use tools/visualizer, or thoughts/questions about the Task statements, on socials?

Answer: Yes.
Yes
A - Scheduling of Agricultural Machinery Sharing shibh308
問題文中の制約では 300 <= N_job <= 1000 と表記されていますが、テストケースの説明やgeneratorの初期設定では N_job が 250 のケースが存在しています。制約とテストケースのどちらが正しいでしょうか?
制約の記述が誤りで、 250 <= N_job <= 1000 が正しい制約です。A, B両方についてそのように修正しました。

[ENGLISH]
Question: The task statement (for A and B)  says that  "300 <= N_job <= 1000", however, there exist some test cases with N_job = 250 in the description of test case and the initial settings in the generator.  Which one is correct, the constraint or the test cases?

Answer: The constraint is wrong. The correct one is "250 <= N_job <= 1000".  We have corrected that error for A and B.
Yes