結果

問題 No.5016 Worst Mayor
ユーザー Shawn stayCShawn stayC
提出日時 2023-04-29 15:37:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 203,552 KB
実行使用メモリ 24,288 KB
スコア 44,001,752
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 15:37:18
合計ジャッジ時間 9,597 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
23,664 KB
testcase_01 AC 83 ms
23,436 KB
testcase_02 AC 81 ms
23,400 KB
testcase_03 AC 82 ms
23,700 KB
testcase_04 AC 80 ms
24,180 KB
testcase_05 AC 82 ms
23,832 KB
testcase_06 AC 82 ms
23,256 KB
testcase_07 AC 77 ms
23,268 KB
testcase_08 AC 85 ms
23,568 KB
testcase_09 AC 82 ms
23,844 KB
testcase_10 AC 81 ms
23,556 KB
testcase_11 AC 82 ms
24,072 KB
testcase_12 AC 83 ms
23,388 KB
testcase_13 AC 84 ms
24,288 KB
testcase_14 AC 81 ms
24,012 KB
testcase_15 AC 82 ms
23,628 KB
testcase_16 AC 82 ms
23,964 KB
testcase_17 AC 82 ms
23,952 KB
testcase_18 AC 103 ms
23,256 KB
testcase_19 AC 83 ms
23,964 KB
testcase_20 AC 85 ms
23,568 KB
testcase_21 AC 83 ms
23,856 KB
testcase_22 AC 83 ms
23,940 KB
testcase_23 AC 82 ms
23,436 KB
testcase_24 AC 82 ms
23,268 KB
testcase_25 AC 83 ms
23,256 KB
testcase_26 AC 81 ms
23,652 KB
testcase_27 AC 82 ms
24,168 KB
testcase_28 AC 104 ms
24,180 KB
testcase_29 AC 83 ms
23,556 KB
testcase_30 AC 77 ms
23,436 KB
testcase_31 AC 82 ms
24,144 KB
testcase_32 AC 82 ms
23,436 KB
testcase_33 AC 81 ms
24,264 KB
testcase_34 AC 81 ms
23,952 KB
testcase_35 AC 82 ms
23,256 KB
testcase_36 AC 81 ms
23,952 KB
testcase_37 AC 82 ms
23,256 KB
testcase_38 AC 86 ms
23,856 KB
testcase_39 AC 82 ms
24,276 KB
testcase_40 AC 80 ms
24,180 KB
testcase_41 AC 82 ms
23,664 KB
testcase_42 AC 81 ms
23,556 KB
testcase_43 AC 82 ms
23,844 KB
testcase_44 AC 81 ms
23,664 KB
testcase_45 AC 79 ms
23,436 KB
testcase_46 AC 81 ms
24,180 KB
testcase_47 AC 81 ms
23,652 KB
testcase_48 AC 86 ms
23,388 KB
testcase_49 AC 81 ms
23,952 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};

bool range(int x, int y){
	if(x<0 || y<0 || x>=14 || y>=14) return true;
	return false;
}

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);
	
	rep(i,0,200){
		int u,v; cin>>u>>v;
		cout<<3<<endl; //money
	}
	rep(i,0,150){
		int u,v; cin>>u>>v;
		cout<<2<<endl; //supporter
	}
	rep(i,0,50){
		int u,v; cin>>u>>v;
		if(u==-1) return 0;
		if(u<1e7/sqrt(v)) 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
		}
	}
}
0