Clarifications


Task Name Username Clarifications Response Public Created time Modified time
B - hokudai_hitachi2020_b じゅぴろ
システムテストはいつ行われますか?
システムテストは今週実施予定です。
テストが終わり次第、最終順位も発表予定ですので、もう少々お待ち下さい。
Yes
A - hokudai_hitachi2020_a wleite
Predicted energy balance: undisclosed vs disclosed

In the scoring section there is a table with the breakdown of 200 test cases and after the table it says: 
“The remaining 40 test cases use 6 types of predicted energy balance that are not disclosed to the contestants.”

My doubt is about the difference between “undisclosed” and “disclosed” cases. 

- Undisclosed cases will use other predicted energy balance, different from the ones hard coded in "random_expected_state_of_power_generator.hpp", so competitors will not be able to know these patterns beforehand.  Is this the correct understanding?

- Will the energy balance still be provided during the execution of the solution?
> - Undisclosed cases will use other predicted energy balance, different from the ones hard coded in "random_expected_state_of_power_generator.hpp", so competitors will not be able to know these patterns beforehand.  Is this the correct understanding?
Yes.

- Will the energy balance still be provided during the execution of the solution?
Yes. Undisclosed predicted energy balance will be provided during the execution of the solution.

Thank you so much!
Yes
Numb
Are prizes for residents of japan only or International ?
Thank you for participating our contest. Prizes will also be awarded to foreigners.
Yes
A - hokudai_hitachi2020_a yuusanlondon
システムテストの際の条件が変わったとのことですが、すでに提出しているコードが開示された予測電力セットに依存しているものになりますので、提出したコードを取り下げたいのですが、(開示された予測電力セットしか使っていない)サンプルテストセットでの自己最高点を更新しないと新条件に対処したものを最終提出にできない形になりますでしょうか?また、未開示の予測電力セットの生成方法の開示や、それに対応したジェネレーターなどを公開する予定などはございませんでしょうか?
ご質問ありがとうございます。
また、システムテストの件で混乱させてしまい、申し訳ございません。
トップページのルールに書かれております通り、システムテストの対象となるのは最高得点を獲得したコードではなく、最後に提出されたコードになります。
システムテストは、上位者だけでなく、全ての参加者の最終提出に対して行います。
未開示の予測電力需給パターンの生成法やジェネレーターを開示する予定はございません。
ただし、未開示のパターンでの電力スコアの満点(理想的な制御実行時の得点の上限)は、開示済のパターンの電力スコアの満点と同等の得点となるよう、作成予定です。
Yes
A - hokudai_hitachi2020_a gokhan
I downloaded the toolkit_A_v20201218_2, "make" and run "./generator_A -r -d 0 > test_case.in".
When I parse this input, I notice some differences from the problem description:
1) There is a "1" at the beginning. This is not explained.
2) The line that should contain "N_EV C_EV_init C_EV_max V_EV_max Delta_EV_move" contains 6 instead of 5 values. For me, these values are "17 12500 25000 400 4 50". Here, "4" seems redundant. When I re-run the generator, this line still has 6 values.
I don't understand why the sample_A works,  maybe it just parses the wrong value (Delta_EV_move=4).
What is the first value in test_case.in? What is the 5th value in the mentioned line?
ありがとうございます.
First, we apologize for confusing you regarding the data format.
The data flow is as follows.

generator_A--(output)-->"test_case.in"--(read)-->judge_A<--->(stdout,"I/O format 1,2,and 3")<--->sample_A

"test_case.in" generated here is the file for the judge to read and do not match the data format output by the judge to the contestant.
The format of "test_case.in" for problem A conforms to the format written in "Input and Output format 1" of problem B due to implementation reasons. Therefore, regarding problem A, some unnecessary data is included in "test_case.in".
Please ignore the "1" at the beginning of "test_case.in" and the 5th value in the mentioned line, etc.

The above is also described in the newly updated README on December 21st.
Çok teşekkür ederim!
Yes
A - hokudai_hitachi2020_a hiro116s
電力需給の章でゲリラ豪雨と想定外の晴れの場合の定義が書いてありますが、これらはそれぞれ"通常の雨"(雨(想定外の晴れ無し)、雨(想定外の晴れ有り)の場合の雨)と"通常の晴れ"(晴(ゲリラ豪雨無し)、晴(ゲリラ豪雨有り)の場合の晴れ)でも適応されますか?
DayTypeが1の場合にのみゲリラ豪雨が発生し、DayTypeが3の場合にのみ想定外の晴れが発生します。
その他のDayTypeではどちらも発生しません。
Yes
A - hokudai_hitachi2020_a komori3
generator_A で入力を生成する際、稀に以下のエラーが出るようです (自分の環境では seed=9, 34 等)

generator_A: src/generator_A.cpp:45: int main(int, const char**): Assertion `3 * N <= 2 * M and 2 * M <= 4 * N' failed.
Aborted (core dumped)
integerの切り捨てで生じるバグと考えており、近々修正版をリリース予定です。
申し訳ございませんがもう少々お待ち下さい。
>toolkit修正しました(2020/12/18)
Yes
A - hokudai_hitachi2020_a sbite
問題Aのツールキット(ファイル名:e23f0cbab29d3e414781820a7de3793f.zip)について質問があります.
toolkit_A/src/generator_A.cppの81行目によると,A問題では各テストケースに対して注文/電力供給シナリオの生成は1回しか行われていません.
しかし,toolkit_A/src/judge_A.cppの107行目を見ると,注文/電力供給シナリオをN_sol回読み込んでいるようです.
INFOマクロによってN_solの値を確認したところ,5でした.
そのため,generatorによって出力されたインプットの量と,judgeが受け取るインプットの量が合わず,実行時にエラーとなっているように見えるのですが,これは正しい挙動でしょうか.
ご指摘ありがとうございます。
修正したtoolkitをアップしましたので、ご確認ください。
Yes
A - hokudai_hitachi2020_a torisasami
ナノグリッドの情報の順番は入出力形式1、2で同じですか?(1≦i≦N_grid、0≦t<T_maxを満たす全ての(i,t)についてx[i] (入出力形式1) = x[t][i] (入出力形式2) が成り立ちますか?)
同じです(成り立ちます)。
Yes
A - hokudai_hitachi2020_a yuusanlondon
テストケースとツールによるテストケース生成では、random_expected_state_of_power_generator.hppの予測電力セットを使っているみたいですが、最終的なシステムテストでもこの予測電力セットを使う予定ですか?(具体的に言うと、この予測電力のセットが出る前提でプログラムを組んでもいいですか?)
最終的なシステムテストでもこの予測電力セットを使う予定です。
Yes
A - hokudai_hitachi2020_a yuto1115
自然数の定義は何ですか?(0を含みますか?)
0を含みません。
Yes