結果

問題 No.5016 Worst Mayor
ユーザー Shawn stayCShawn stayC
提出日時 2023-04-29 16:20:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 2,420 ms
コンパイル使用メモリ 203,900 KB
実行使用メモリ 24,324 KB
スコア 3,117,125,640
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 16:20:27
合計ジャッジ時間 9,694 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
23,292 KB
testcase_01 AC 84 ms
23,244 KB
testcase_02 AC 83 ms
23,544 KB
testcase_03 AC 82 ms
23,244 KB
testcase_04 AC 83 ms
23,256 KB
testcase_05 AC 82 ms
23,676 KB
testcase_06 AC 85 ms
23,556 KB
testcase_07 AC 87 ms
23,256 KB
testcase_08 AC 83 ms
23,928 KB
testcase_09 AC 112 ms
24,204 KB
testcase_10 AC 83 ms
23,400 KB
testcase_11 AC 84 ms
23,916 KB
testcase_12 AC 83 ms
23,640 KB
testcase_13 AC 82 ms
23,700 KB
testcase_14 AC 87 ms
23,436 KB
testcase_15 AC 86 ms
23,232 KB
testcase_16 AC 85 ms
23,484 KB
testcase_17 AC 84 ms
23,664 KB
testcase_18 AC 87 ms
23,664 KB
testcase_19 AC 86 ms
23,388 KB
testcase_20 AC 85 ms
23,508 KB
testcase_21 AC 83 ms
24,072 KB
testcase_22 AC 85 ms
23,292 KB
testcase_23 AC 84 ms
23,292 KB
testcase_24 AC 83 ms
24,204 KB
testcase_25 AC 82 ms
23,652 KB
testcase_26 AC 83 ms
24,264 KB
testcase_27 AC 83 ms
23,532 KB
testcase_28 AC 81 ms
23,568 KB
testcase_29 AC 84 ms
23,244 KB
testcase_30 AC 78 ms
23,400 KB
testcase_31 AC 83 ms
23,388 KB
testcase_32 AC 84 ms
23,856 KB
testcase_33 AC 83 ms
23,868 KB
testcase_34 AC 82 ms
23,244 KB
testcase_35 AC 84 ms
23,388 KB
testcase_36 AC 82 ms
24,324 KB
testcase_37 AC 82 ms
23,268 KB
testcase_38 AC 82 ms
23,412 KB
testcase_39 AC 78 ms
24,132 KB
testcase_40 AC 79 ms
24,084 KB
testcase_41 AC 78 ms
23,700 KB
testcase_42 AC 83 ms
23,436 KB
testcase_43 AC 84 ms
24,192 KB
testcase_44 AC 83 ms
24,096 KB
testcase_45 AC 84 ms
23,928 KB
testcase_46 AC 82 ms
23,556 KB
testcase_47 AC 83 ms
23,280 KB
testcase_48 AC 87 ms
23,256 KB
testcase_49 AC 83 ms
23,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,l,r) for(int i=(l);i<(r);++i)

vector<int> dx={-1,0,1,0};
vector<int> dy={0,1,0,-1};
int sp=99;

int main(){
	int n,t; cin>>n>>t;
	vector<int> a(n),b(n),c(n),d(n);
	rep(i,0,n) cin>>a[i]>>b[i]>>c[i]>>d[i];
	
	random_device rd;
	mt19937 eng(rd());
	uniform_int_distribution<int> sd1(2,13);
	uniform_int_distribution<int> sd2(0,3);
	int p=0;
	
	rep(i,0,sp){
		int u,v; cin>>u>>v;
		cout<<2<<endl; //supporter
	}
	rep(i,0,t-sp){
		int u,v; cin>>u>>v;
		if(u==-1) return 0;
		if(u<1e7/sqrt(v) || p>10) cout<<3<<endl; //money
		else{
			int x=sd1(eng), y=sd1(eng), d=sd2(eng);
			cout<<1<<" "<<x<<" "<<y<<" "<<x+dx[d]<<" "<<y+dy[d]<<endl; //road
			p++;
		}
	}
}
0