結果
問題 | No.5020 Averaging |
ユーザー | hirayuu_yc |
提出日時 | 2024-02-25 13:35:07 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 8,819 bytes |
コンパイル時間 | 5,410 ms |
コンパイル使用メモリ | 314,288 KB |
実行使用メモリ | 6,548 KB |
スコア | 15,114,308 |
最終ジャッジ日時 | 2024-02-25 13:35:15 |
合計ジャッジ時間 | 7,460 ms |
ジャッジサーバーID (参考情報) |
judge13 / judge11 |
純コード判定しない問題か言語 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,548 KB |
testcase_01 | AC | 2 ms
6,548 KB |
testcase_02 | AC | 1 ms
6,548 KB |
testcase_03 | AC | 2 ms
6,548 KB |
testcase_04 | AC | 2 ms
6,548 KB |
testcase_05 | AC | 1 ms
6,548 KB |
testcase_06 | AC | 1 ms
6,548 KB |
testcase_07 | AC | 1 ms
6,548 KB |
testcase_08 | AC | 2 ms
6,548 KB |
testcase_09 | AC | 2 ms
6,548 KB |
testcase_10 | AC | 2 ms
6,548 KB |
testcase_11 | AC | 1 ms
6,548 KB |
testcase_12 | AC | 2 ms
6,548 KB |
testcase_13 | AC | 1 ms
6,548 KB |
testcase_14 | AC | 1 ms
6,548 KB |
testcase_15 | AC | 2 ms
6,548 KB |
testcase_16 | AC | 1 ms
6,548 KB |
testcase_17 | AC | 2 ms
6,548 KB |
testcase_18 | AC | 2 ms
6,548 KB |
testcase_19 | AC | 1 ms
6,548 KB |
testcase_20 | AC | 1 ms
6,548 KB |
testcase_21 | AC | 1 ms
6,548 KB |
testcase_22 | AC | 1 ms
6,548 KB |
testcase_23 | AC | 2 ms
6,548 KB |
testcase_24 | AC | 2 ms
6,548 KB |
testcase_25 | AC | 2 ms
6,548 KB |
testcase_26 | AC | 2 ms
6,548 KB |
testcase_27 | AC | 2 ms
6,548 KB |
testcase_28 | AC | 2 ms
6,548 KB |
testcase_29 | AC | 2 ms
6,548 KB |
testcase_30 | AC | 2 ms
6,548 KB |
testcase_31 | AC | 2 ms
6,548 KB |
testcase_32 | AC | 2 ms
6,548 KB |
testcase_33 | AC | 2 ms
6,548 KB |
testcase_34 | AC | 2 ms
6,548 KB |
testcase_35 | AC | 2 ms
6,548 KB |
testcase_36 | AC | 2 ms
6,548 KB |
testcase_37 | AC | 1 ms
6,548 KB |
testcase_38 | AC | 1 ms
6,548 KB |
testcase_39 | AC | 2 ms
6,548 KB |
testcase_40 | AC | 1 ms
6,548 KB |
testcase_41 | AC | 2 ms
6,548 KB |
testcase_42 | AC | 2 ms
6,548 KB |
testcase_43 | AC | 2 ms
6,548 KB |
testcase_44 | AC | 2 ms
6,548 KB |
testcase_45 | AC | 2 ms
6,548 KB |
testcase_46 | AC | 2 ms
6,548 KB |
testcase_47 | AC | 2 ms
6,548 KB |
testcase_48 | AC | 2 ms
6,548 KB |
testcase_49 | AC | 2 ms
6,548 KB |
ソースコード
//諸々include、namespace設定 /* #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") //*/ #include<atcoder/all> using namespace atcoder; using mint = modint998244353; #if 1 //https://tatyam.hatenablog.com/entry/2019/12/15/003634 を大きく参考にし、一部使わせてもらいました。感謝…! #include<bits/stdc++.h> using namespace std; using namespace chrono; using ll=long long; template<class T> using pq=priority_queue<T,vector<T>,greater<T>>; using pll=pair<ll,ll>; const ll INFL=1LL<<60; #define _overload3(_1,_2,_3,name,...) name #define _overload4(_1,_2,_3,_4,name,...) name #define _rep1(i,n) for(ll i=0; i<(n); i++) #define _rep2(i,a,b) for(ll i=(a); i<(b); i++) #define _rep3(i,a,b,c) for(ll i=(a); i<(b); i+=(c)) #define rep(...) _overload4(__VA_ARGS__,_rep3,_rep2,_rep1)(__VA_ARGS__) #define _rrep1(i,n) for(ll i=(n); i-->0;) #define _rrep2(i,a,b) for(ll i=(b); i-->(a);) #define rrep(...) _overload3(__VA_ARGS__,_rrep2,_rrep1)(__VA_ARGS__) #define each(i,...) for(auto&& i:__VA_ARGS__) #define all(i) begin(i),end(i) #define rall(i) rbegin(i),rend(i) template<class T> bool chmin(T &a,const T &b){if(a>b){a=b;return true;}else return false;} template<class T> bool chmax(T &a,const T &b){if(a<b){a=b;return true;}else return false;} template<class T> ll sum(const T &a){return accumulate(all(a),0LL);} template<class T> auto min(const T &a){return *min_element(all(a));} template<class T> auto max(const T &a){return *max_element(all(a));} inline int scan(){ return getchar(); } inline void scan(int &a){ scanf("%d", &a); } inline void scan(unsigned &a){ scanf("%u", &a); } inline void scan(long &a){ scanf("%ld", &a); } inline void scan(long long &a){ scanf("%lld", &a); } inline void scan(unsigned long long &a){ scanf("%llu", &a); } inline void scan(char &a){ cin >> a; } inline void scan(float &a){ scanf("%f", &a); } inline void scan(double &a){ scanf("%lf", &a); } inline void scan(long double &a){ scanf("%Lf", &a); } inline void scan(vector<bool> &vec){ for(unsigned i = 0; i < vec.size(); i++) { int a; scan(a); vec[i] = a; } } inline void scan(char a[]){ scanf("%s", a); } inline void scan(string &a){ cin >> a; } template<class T> inline void scan(vector<T> &vec); template<class T, size_t size> inline void scan(array<T, size> &vec); template<class T, class L> inline void scan(pair<T, L> &p); template<class T, size_t size> inline void scan(T (&vec)[size]); template<class T> inline void scan(vector<T> &vec){ for(auto &i : vec) scan(i); } template<class T> inline void scan(deque<T> &vec){ for(auto &i : vec) scan(i); } template<class T, size_t size> inline void scan(array<T, size> &vec){ for(auto &i : vec) scan(i); } template<class T, class L> inline void scan(pair<T, L> &p){ scan(p.first); scan(p.second); } template<class T, size_t size> inline void scan(T (&vec)[size]){ for(auto &i : vec) scan(i); } template<class T> inline void scan(T &a){ cin >> a; } inline void in(){} template <class Head, class... Tail> inline void in(Head &head, Tail&... tail){ scan(head); in(tail...); } inline void print(){ putchar(' '); } inline void print(const bool &a){ printf("%d", a); } inline void print(const int &a){ printf("%d", a); } inline void print(const unsigned &a){ printf("%u", a); } inline void print(const long &a){ printf("%ld", a); } inline void print(const long long &a){ printf("%lld", a); } inline void print(const unsigned long long &a){ printf("%llu", a); } inline void print(const char &a){ printf("%c", a); } inline void print(const char a[]){ printf("%s", a); } inline void print(const float &a){ printf("%.15f", a); } inline void print(const double &a){ printf("%.15f", a); } inline void print(const long double &a){ printf("%.15Lf", a); } inline void print(const string &a){ for(auto&& i : a) print(i); } template<class T> inline void print(const vector<T> &vec); template<class T, size_t size> inline void print(const array<T, size> &vec); template<class T, class L> inline void print(const pair<T, L> &p); template<class T, size_t size> inline void print(const T (&vec)[size]); template<class T> inline void print(const vector<T> &vec){ if(vec.empty()) return; print(vec[0]); for(auto i = vec.begin(); ++i != vec.end(); ){ putchar(' '); print(*i); } } template<class T> inline void print(const deque<T> &vec){ if(vec.empty()) return; print(vec[0]); for(auto i = vec.begin(); ++i != vec.end(); ){ putchar(' '); print(*i); } } template<class T, size_t size> inline void print(const array<T, size> &vec){ print(vec[0]); for(auto i = vec.begin(); ++i != vec.end(); ){ putchar(' '); print(*i); } } template<class T, class L> inline void print(const pair<T, L> &p){ print(p.first); putchar(' '); print(p.second); } template<class T, size_t size> inline void print(const T (&vec)[size]){ print(vec[0]); for(auto i = vec; ++i != end(vec); ){ putchar(' '); print(*i); } } template<class T> inline void print(const T &a){ cout << a; } inline int out(){ putchar('\n'); return 0; } template<class T> inline int out(const T &t){ print(t); putchar('\n'); return 0; } template<class Head, class... Tail> inline int out(const Head &head, const Tail&... tail){ print(head); putchar(' '); out(tail...); return 0; } using ld=long double; using ull=unsigned long long; using uint=unsigned int; using pii=pair<int,int>; using pdd=pair<ld,ld>; using tuplis=array<ll,3>; #define vec(type,name,...) vector<type> name(__VA_ARGS__); #define vv(type,name,h,...)vector<vector<type>> name(h,vector<type>(__VA_ARGS__)); #define INT(...) int __VA_ARGS__; in(__VA_ARGS__) #define LL(...) ll __VA_ARGS__; in(__VA_ARGS__) #define ULL(...) ull __VA_ARGS__; in(__VA_ARGS__) #define STR(...) string __VA_ARGS__; in(__VA_ARGS__) #define CHR(...) char __VA_ARGS__; in(__VA_ARGS__) #define LD(...) ld __VA_ARGS__; in(__VA_ARGS__) #define VEC(type,name,size) vector<type> name(size); in(name) #define VV(type, name, h, w) vector<vector<type>> name(h, vector<type>(w)); in(name) template<class T> ld dsum(const T &a){return accumulate(all(a),0.0L);} const int INF=INT_MAX>>1; const ll MINF=1LL<<40; const ld DINF=numeric_limits<ld>::infinity(); const int MODD=1000000007; const int MOD=998244353; const ld EPS=1e-9; const ld PI=3.1415926535897932; const ll four[]={0,1,0,-1,0}; const ll eight[]={0,1,1,0,-1,-1,1,-1,0}; ll intpow(ll a,ll b){ll ret=1;while(b){if(b&1)ret*=a;a*=a;b>>=1;}return ret;} int Yes(bool i=true){return out(i?"Yes":"No");} int No(bool i=true){return out(i?"No":"Yes");} #define len(x) ((int)(x).size()) #define fi first #define se second #endif //0以上2^32-1以下の整数をランダムに生成(xorshift32) //seed値を固定しているため、基本結果が上振れたり下振れたりしない unsigned int randxor(){ static unsigned int x=42; x=x^(x<<13);x=x^(x>>15);x=x^(x<<17); return x; } //l以上r以下の整数をランダムに生成 int randint(int l,int r){ return l+randxor()%(r-l+1); } //l以上r以下の実数をランダムに生成 double uniform(double l,double r){ return ((double)randxor()/UINT_MAX)*(r-l)+l; } //時間計測(ミリ秒)、秒に直す場合10^6で割ると得られる auto startTime=system_clock::now(); int getTime(){ return duration_cast<microseconds>(system_clock::now()-startTime).count(); } //ファイル名設定用のゼロ埋め string zero_fill(string num,int z){ while(num.size()<z){ num="0"+num; } return num; } //主要部分、スコアを返す int solve(){ INT(N); using card=pair<ull,ull>; vec(card,cards,N); rep(i,N){ ULL(A,B); cards[i]=card(A,B); } const ull target=5e17; vector<pll> ans; rep(i,5){ rep(j,1<<(4-i)){ ull a=(cards[j].fi+cards[j+(1<<i)].fi)>>1; ull b=(cards[j].se+cards[j+(1<<i)].se)>>1; cards[j]=card(a,b); cards[j+(1<<i)]=card(a,b); ans.push_back(pll(j,j+(1<<i))); } } out(len(ans)); each(i,ans){ i.fi++;i.se++; out(i); } ull V=max(abs((ll)cards[0].fi-(ll)target),abs((ll)cards[0].se-(ll)target)); return 2000000-100000*log10(V+1); } //いろいろ処理 int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); /*提出時はコメントアウト int T=1; vector<int> score(T); ll sum=0; rep(i,T){ string file="in/"; file+=zero_fill(to_string(i),4); file+=".txt"; ifstream in(file); cin.rdbuf(in.rdbuf()); score[i]=solve(); sum+=score[i]; cerr<<file<<":"<<score[i]<<"\n"; } sort(score.begin(),score.end()); cerr<<"Sum:"<<sum<<"\n"; cerr<<"Min:"<<score[0]<<"\n"; cerr<<"Max:"<<score[T-1]<<"\n"; //*/cerr<<solve()<<"\n"; } /*cmd: g++ main.cpp&&./a.out>out.txt */ /*prof_cmd: g++ -pg main.cpp&&./a.out&&gprof a.out */