結果
問題 | No.1236 長針と短針 |
ユーザー | beet |
提出日時 | 2020-10-07 14:30:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,739 bytes |
コンパイル時間 | 1,912 ms |
コンパイル使用メモリ | 203,000 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 03:25:37 |
合計ジャッジ時間 | 2,962 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
ソースコード
// verification-helper: PROBLEM https://yukicoder.me/problems/4941 #include<bits/stdc++.h> using namespace std; #define call_from_test #ifndef call_from_test #include<bits/stdc++.h> using namespace std; #endif //BEGIN CUT HERE template<typename T> struct fraction{ T num,dom; fraction(){} fraction(T n,T d):num(n),dom(d){ assert(dom!=0); if(dom<0) num*=-1,dom*=-1; T tmp=__gcd(abs(num),abs(dom)); num/=tmp; dom/=tmp; } fraction operator+(const fraction a) const{ return fraction(num*a.dom+a.num*dom,dom*a.dom); } fraction operator-(const fraction a) const{ return fraction(num*a.dom-a.num*dom,dom*a.dom); } fraction operator*(const fraction a) const{ return fraction(num*a.num,dom*a.dom); } fraction operator/(const fraction a){ return fraction(num*a.dom,dom*a.num); } fraction operator*(T k) const{return fraction(num*k,dom);} fraction operator/(T k) const{return fraction(num,dom*k);} bool operator<(const fraction a)const{ return num*a.dom<a.num*dom; } bool operator>(const fraction a)const{ return num*a.dom>a.num*dom; } bool operator==(const fraction a)const{ return num*a.dom==a.num*dom; } bool operator!=(const fraction a)const{ return num*a.dom!=a.num*dom; } bool operator<=(const fraction a)const{ return num*a.dom<=a.num*dom; } bool operator>=(const fraction a)const{ return num*a.dom>=a.num*dom; } }; //END CUT HERE #ifndef call_from_test struct FastIO{ FastIO(){ cin.tie(0); ios::sync_with_stdio(0); } }fastio_beet; //INSERT ABOVE HERE signed CPSCO2019_Session3_G(){ using ll = long long; int n,x; cin>>n>>x; vector<ll> as(n); for(int i=0;i<n;i++) cin>>as[i]; using F = fraction<ll>; using T = tuple<F, int, int>; priority_queue<T> pq; int sum=0; for(int i=0;i<n;i++) sum+=as[i]; for(int i=0;i<n;i++){ int p=x*as[i]/sum; pq.emplace(F(1,as[i]),i,p); if((x*as[i])%sum!=0) pq.emplace(F(2*x,sum)-F(2*p+1,as[i]),i,1); pq.emplace(F(-1,as[i]),i,x+1); } vector<int> bs(n,0); int k=x; while(k>0){ int i,l; tie(ignore,i,l)=pq.top();pq.pop(); int t=min(k,l); bs[i]+=t; k-=t; } for(int i=0;i<n;i++) cout<<bs[i]<<"\n"; cout<<flush; return 0; } /* verified on 2019/12/17 https://atcoder.jp/contests/cpsco2019-s3/tasks/cpsco2019_s3_g */ signed main(){ //CPSCO2019_Session3_G(); return 0; } #endif #undef call_from_test signed main(){ cin.tie(0); ios::sync_with_stdio(0); string s,t; cin>>s>>t; int a=(s[0]-'0')*10+(s[1]-'0'); int b=(t[0]-'0')*10+(t[1]-'0'); using F = fraction<int>; F c(a*60+b,1); F d(720,11); F x(0,1); while(x<c) x=x+d; x=x-c; cout<<x.num*60/x.dom<<endl; return 0; }