

Time Limit: 2 sec / Memory Limit: 1024 MB
ストーリー
AtCoder社は最短路アルゴリズムを活用した道案内アプリを開発している。 サービスの対象エリアは30×30個の頂点をグリッド状に繋いだ道路網で表される。 ユーザーが現在位置の頂点と目的地の頂点を指定すると、アプリはその間の最短経路を出力する予定だ。 困ったことに、アプリのリリース予定日が迫っているにもかかわらず、最短経路の計算に必要不可欠な各辺の長さの計測が全く出来ていない。 そこで、事前に辺の長さを計測することを諦め、最短でないパスの出力も許すことにした。 ユーザーが目的地に到着するまでに実際にかかった時間の情報をもとに、出力した各辺の長さを推測することで、徐々に性能の改善が可能であるはずだ。
問題文
辺の長さが未知の30×30頂点の無向グリッドグラフがある。 一番左上の頂点を とし、そこから下方向に 回、右方向に 回移動した先の頂点を とする。 以下のクエリを1000個処理せよ。
番目のクエリでは、まずはじめに、標準入力から頂点 と が以下の形式で与えられる。
入力を読み込んだら、あなたのプログラムは から へのパス を1つ求める。
から , , , の頂点への移動をそれぞれ U
, D
, L
, R
として、 を文字列で表し、標準出力に一行で出力せよ。
出力のあとは標準出力を flush しなければならない。そうしない場合、TLE
となる可能性がある。
パスが出力されると、ジャッジプログラムはパスの長さ を計算し、 以上 以下の一様乱数 を生成して、整数値 を標準入力に与える。 それを読み込むことで番目のクエリが終了し、番目のクエリへ進む。
例
Input | Output |
---|---|
3 19 16 17 |
|
DDDDDDDDDDDDDLL |
|
99561 |
|
26 18 13 18 |
|
UUUUUUUUUUUUU |
|
72947 |
得点
番目 () のクエリに対する最短路長を 、出力されたパスの長さを とすると、以下の得点が得られる。
各テストケースの得点の合計が提出の得点となる。
不正なパス(同じ頂点を複数回通る、30×30の外へはみ出す、sからtへのパスでない)が出力された場合、WA
と判定される。
コンテスト終了後に一番最後の提出に対してシステムテストが行われ、最終順位が決定される。
- 暫定テストは100個のテストケースを用いる。1つ以上のテストケースで
AC
以外の判定がされた場合、提出の得点は0点となる。 - システムテストは3000個のテストケースを用いる。
AC
以外の判定がされた場合、そのテストケースのみ0点となる。コンテスト終了後にseeds.txt(md5=0cf5051d586e7f62c0b3527f6f7fbb1c)を公開
入力生成方法
以上 以下の整数値を一様ランダムに生成する関数を で表す。 まずはじめに、2つのパラメータ と を生成する。 頂点 と を結ぶ辺の長さを 、頂点 と を結ぶ辺の長さを とする。
の生成
- 各 , に対して独立に乱数値 を生成する。
- 各 , に対して独立に乱数値 を生成する。
- の場合は、各 , に対して と設定する。
- の場合は、各 に対して乱数 を生成し、 に対しては 、 に対しては と設定する。
の生成
- 各 , に対して独立に乱数値 を生成する。
- 各 , に対して独立に乱数値 を生成する。
- の場合は、各 , に対して と設定する。
- の場合は、各 に対して乱数 を生成し、 に対しては 、 に対しては と設定する。
, の生成
クエリで与えられる頂点 と は、全ての頂点の中から一様ランダムに選択される。 と のマンハッタン距離 が10未満の場合は、10以上になるまで選択を繰り返す。
ツール
- ローカルテスタ: 使用するには、Rust 言語のコンパイル環境をご用意下さい。
- ビジュアライザ
- 入力データ: 上のローカルテスタを使用しない場合は、こちらのローカルテスト用の100個の入力データ(seed 0-99)を利用することも出来ます。これらの入力は実際のテストケースとは異なります。入力データは以下のフォーマットとなっており、各自でジャッジ用のプログラムを書いてご利用下さい。
ジャッジ用プログラムの例(疑似コード)
string query(s, t, prev_result) { // WRITE YOUR SOLUTION HERE } int main() { if (LOCAL_TEST) { read_h_v(); } prev_result = 0; score = 0.0; for (int k = 0; k < 1000; k++) { if (LOCAL_TEST) { read_s_t_a_e(); } else { read_s_t(); } path = query(s, t, prev_result); print(path); if (LOCAL_TEST) { b = compute_path_length(path); score = score * 0.998 + a / b; prev_result = round(b * e); } else { prev_result = read_result(); } } if (LOCAL_TEST) { print(round(2312311 * score)); } return 0; }
Story
AtCoder is developing a route navigation application that utilizes shortest path algorithms. The service area is represented as a road network of 30x30 vertices connected in a grid. When a user specifies the vertex of the current location and the vertex of the destination, the app will output the shortest path between them. The trouble is that, even though the scheduled release date is approaching, the measurement of the length of each edge, which is essential for shortest path computations, is not finished at all. Therefore, AtCoder decided to give up measuring the edge length in advance and allows the app to output paths that are not the shortest. It should be possible to gradually improve the performance by estimating the length of each edge based on the information about the actual time users take to arrive at their destinations.
Problem Statement
There is an undirected grid graph with 30x30 vertices with unknown edge lengths. Let denote the top-left vertex, and denote the vertex at the -th row from the top and -th column from the left. Your task is to process the following query 1000 times.
In the -th query, your program first receives the vertices and from Standard Input in the following format:
Then, your program should compute a path from to .
Let U
, D
, L
, and R
represent the movement from to , , , and , respectively.
Output a string representing the path to Standard Output in one line.
After the output, you have to flush Standard Output. Otherwise, the submission might be judged as TLE.
After your program outputs a path, the judge program calculates the length of the path, generates a uniform random number between and , and gives an integer value to Standard Input. By reading that integer, the -th query completes, and you should proceed to the -th query.
Examples
Input | Output |
---|---|
3 19 16 17 |
|
DDDDDDDDDDDDDLL |
|
99561 |
|
26 18 13 18 |
|
UUUUUUUUUUUUU |
|
72947 |
Scoring
Let and be the lengths of the shortest path and the output path for the -th query (), respectively. Then the score for the test case is
The score of a submission is the total score for each test case.
If your program outputs an illegal path (visiting the same vertex multiple times, going outside of 30x30, or not a path from to ), it is judged as WA
.
After the contest is over, the final ranking will be determined by system tests against the last submission.
- Provisional tests consist of 100 test cases. If you get a result other than
AC
for one or more test cases, the score of the submission will be zero. - System tests consist of 3000 test cases. If you get a result other than
AC
for some test cases, only the score for those test cases will be zero. We will publish seeds.txt (md5=0cf5051d586e7f62c0b3527f6f7fbb1c) after the contest is over.
Input Generation
Let be a function that generates a uniformly random integer between and , inclusive. We first generate two parameters and . Let be the length of the edge between and , and let be the length of the edge between and .
Generation of
- For each and , we independently generate a random integer .
- For each and , we independently generate a random integer .
- If , for each and , we set .
- If , for each , we generate a random integer , and then for each , we set , and for each , we set .
Generation of
- For each and , we independently generate a random integer .
- For each and , we independently generate a random integer .
- If , for each and , we set .
- If , for each , we generate a random integer , and then for each , we set , and for each , we set .
Generation of ,
The vertices and given in the query are chosen uniformly at random among all the vertices. If the Manhattan distance between and () is strictly less than 10, we repeat the random selection until the distance becomes at least 10.
Tools
- Local tester: You need a compilation environment of Rust language.
- Visualizer
- Inputs: If you don't use the above local tester, you can instead use these 100 inputs (seed 0-99) for local testing. These inputs are different from the actual test cases. The inputs are in the following format, and you can use them by writing a judge program by yourself.
Example of judge program (pseudo code)
string query(s, t, prev_result) { // WRITE YOUR SOLUTION HERE } int main() { if (LOCAL_TEST) { read_h_v(); } prev_result = 0; score = 0.0; for (int k = 0; k < 1000; k++) { if (LOCAL_TEST) { read_s_t_a_e(); } else { read_s_t(); } path = query(s, t, prev_result); print(path); if (LOCAL_TEST) { b = compute_path_length(path); score = score * 0.998 + a / b; prev_result = round(b * e); } else { prev_result = read_result(); } } if (LOCAL_TEST) { print(round(2312311 * score)); } return 0; }