結果
問題 |
No.814 ジジ抜き
|
ユーザー |
![]() |
提出日時 | 2018-02-21 13:37:14 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 196 ms / 3,000 ms |
コード長 | 991 bytes |
コンパイル時間 | 631 ms |
コンパイル使用メモリ | 74,416 KB |
最終ジャッジ日時 | 2025-01-05 08:24:31 |
ジャッジサーバーID (参考情報) |
judge3 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:23:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | scanf("%d",&N); | ~~~~~^~~~~~~~~ main.cpp:26:24: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 26 | rep(i, N) scanf("%lld%lld%d",&K[i],&L[i],&D[i]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <cstdio> #include <iostream> #include <vector> typedef long long ll; typedef unsigned long long ull; #define REP(i,a,b) for(ll (i)=a;(i)<(ll)(b);++(i)) #define rep(i,n) REP(i,0,n) using namespace std; const ull cycle_per_sec = 2800000000; ull begin_cycle; ull get_cycle(){ unsigned int low, high; __asm__ volatile ("rdtsc" : "=a" (low), "=d" (high)); return ((ull) low) | ((ull) high << 32); } double get_time(){ return (double) (get_cycle() - begin_cycle)/cycle_per_sec; } int main(){ //std::ios::sync_with_stdio(false);std::cin.tie(0); int N; scanf("%d",&N); vector<ll> K(N), L(N); vector<int> D(N); rep(i, N) scanf("%lld%lld%d",&K[i],&L[i],&D[i]); begin_cycle = get_cycle(); ll lb = -1, ub = (ll)1e18+10; while(ub-lb>1){ ll md = (lb+ub+1)/2; int x = 0; rep(i, N){ ll t = md-L[i]; if(t<0) continue; t >>= D[i]; t = min(t, K[i]-1); if(t%2==0) x = !x; } (x==1?ub:lb)=md; } double t = get_time(); cerr<<t<<endl; cout<<ub<<endl; return 0; }