-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
14baf64
commit 48c7aa1
Showing
5 changed files
with
476 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
/*Read the problem carefully before starting to work on it*/ | ||
#include <bits/stdc++.h> | ||
//#include <boost/multiprecision/cpp_int.hpp> | ||
//using namespace boost::multiprecision; | ||
//#include <ext/pb_ds/assoc_container.hpp> | ||
//#include <ext/pb_ds/tree_policy.hpp> | ||
using namespace std; | ||
//using namespace __gnu_pbds; | ||
|
||
typedef long long ll; | ||
|
||
#define pb push_back | ||
#define eb emplace_back | ||
#define mp(x,y) make_pair(x,y) | ||
#define mod 1000000007 | ||
|
||
double PI=3.1415926535897932384626; | ||
|
||
//template<typename T> T power(T x,T y,ll m=mod){T ans=1;while(y>0){if(y&1LL) ans=(ans*x)%m;y>>=1LL;x=(x*x)%m;}return ans%m;} | ||
|
||
//typedef tree<ll,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update> ost; | ||
|
||
//mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); | ||
//#define rnd(x, y) uniform_int_distribution<ll>(x, y)(rng) | ||
|
||
//struct custom_hash { | ||
// static uint64_t splitmix64(uint64_t x) { | ||
// // http://xorshift.di.unimi.it/splitmix64.c | ||
// x += 0x9e3779b97f4a7c15; | ||
// x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9; | ||
// x = (x ^ (x >> 27)) * 0x94d049bb133111eb; | ||
// return x ^ (x >> 31); | ||
// } | ||
// size_t operator()(uint64_t x) const { | ||
// static const uint64_t FIXED_RANDOM = | ||
// chrono::steady_clock::now().time_since_epoch().count(); | ||
// return splitmix64(x + FIXED_RANDOM); | ||
// } | ||
//}; | ||
|
||
#define fi first | ||
#define se second | ||
#define int long long | ||
ll n,k; | ||
|
||
string smasknum[10]={"1110111", "0010010", "1011101", "1011011", "0111010", "1101011", "1101111", "1010010", "1111111", "1111011"}; | ||
ll masknum[10]; | ||
|
||
ll mask[2005]; | ||
|
||
map<ll,ll>cry; | ||
|
||
ll binaryToDecimal(string n) | ||
{ | ||
string num = n; | ||
ll dec_value = 0; | ||
|
||
// Initializing base value to 1, i.e 2^0 | ||
ll base = 1; | ||
|
||
ll len = num.length(); | ||
for (ll i = len - 1; i >= 0; i--) { | ||
if (num[i] == '1') | ||
dec_value += base; | ||
base = base * 2; | ||
} | ||
|
||
return dec_value; | ||
} | ||
|
||
bool dp[2005][2005]; | ||
vector<string>data; | ||
|
||
signed main() | ||
{ | ||
ios_base::sync_with_stdio(false); | ||
cin.tie(NULL); | ||
for(ll i=0;i<10;i++) | ||
{ | ||
masknum[i]=binaryToDecimal(smasknum[i]); | ||
cry[masknum[i]]=i; | ||
} | ||
cin>>n>>k; | ||
for(ll i=0;i<n;i++) | ||
{ | ||
string s; | ||
cin>>s; | ||
data.eb(s); | ||
mask[i]=binaryToDecimal(s); | ||
} | ||
dp[n][0]=true; | ||
for(ll i=n-1;i>=0;i--) | ||
{ | ||
for(ll j=0;j<=k;j++) | ||
{ | ||
if(!dp[i+1][j]) | ||
continue; | ||
for(ll dig=9;dig>=0;dig--) | ||
{ | ||
if((mask[i]|masknum[dig])==masknum[dig]) | ||
{ | ||
ll diff=__builtin_popcount(mask[i]^masknum[dig]); | ||
if((j+diff)<=k) | ||
{ | ||
dp[i][j+diff]|=dp[i+1][j]; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
string ans(""); | ||
for(ll i=0;i<n;i++) | ||
{ | ||
for(ll dig=9;dig>=0;dig--) | ||
{ | ||
if((mask[i]|masknum[dig])==masknum[dig]) | ||
{ | ||
ll diff=__builtin_popcount(mask[i]^masknum[dig]); | ||
if(dp[i+1][k-diff]) | ||
{ | ||
ans+=((char)(dig+'0')); | ||
k=k-diff; | ||
break; | ||
} | ||
} | ||
} | ||
} | ||
if(ans.size()<n) | ||
{ | ||
cout<<-1; | ||
} | ||
else | ||
{ | ||
cout<<ans; | ||
} | ||
return 0; | ||
} | ||
|
||
|
||
//252908XL | ||
|
||
/* | ||
comments:- | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/*Read the problem carefully before starting to work on it*/ | ||
#include <bits/stdc++.h> | ||
//#include <boost/multiprecision/cpp_int.hpp> | ||
//using namespace boost::multiprecision; | ||
//#include <ext/pb_ds/assoc_container.hpp> | ||
//#include <ext/pb_ds/tree_policy.hpp> | ||
using namespace std; | ||
//using namespace __gnu_pbds; | ||
|
||
typedef long long ll; | ||
|
||
#define pb push_back | ||
#define eb emplace_back | ||
#define mp(x,y) make_pair(x,y) | ||
#define mod 1000000007 | ||
|
||
double PI=3.1415926535897932384626; | ||
|
||
//template<typename T> T power(T x,T y,ll m=mod){T ans=1;while(y>0){if(y&1LL) ans=(ans*x)%m;y>>=1LL;x=(x*x)%m;}return ans%m;} | ||
|
||
//typedef tree<ll,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update> ost; | ||
|
||
//mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); | ||
//#define rnd(x, y) uniform_int_distribution<ll>(x, y)(rng) | ||
|
||
//struct custom_hash { | ||
// static uint64_t splitmix64(uint64_t x) { | ||
// // http://xorshift.di.unimi.it/splitmix64.c | ||
// x += 0x9e3779b97f4a7c15; | ||
// x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9; | ||
// x = (x ^ (x >> 27)) * 0x94d049bb133111eb; | ||
// return x ^ (x >> 31); | ||
// } | ||
// size_t operator()(uint64_t x) const { | ||
// static const uint64_t FIXED_RANDOM = | ||
// chrono::steady_clock::now().time_since_epoch().count(); | ||
// return splitmix64(x + FIXED_RANDOM); | ||
// } | ||
//}; | ||
|
||
#define fi first | ||
#define se second | ||
|
||
int main() | ||
{ | ||
ios_base::sync_with_stdio(false); | ||
cin.tie(NULL); | ||
ll t; | ||
cin>>t; | ||
while(t--) | ||
{ | ||
ll n; | ||
cin>>n; | ||
ll a,b,c,d; | ||
cin>>a>>b>>c>>d; | ||
ll one=(a-b)*n; | ||
ll two=(a+b)*n; | ||
|
||
if( ( one<=(c+d) )&& ( two>=(c-d) )) | ||
{ | ||
cout<<"Yes\n"; | ||
} | ||
else | ||
{ | ||
cout<<"No\n"; | ||
} | ||
} | ||
return 0; | ||
} | ||
|
||
|
||
//252908XL | ||
|
||
/* | ||
comments:- | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/*Read the problem carefully before starting to work on it*/ | ||
#include <bits/stdc++.h> | ||
//#include <boost/multiprecision/cpp_int.hpp> | ||
//using namespace boost::multiprecision; | ||
//#include <ext/pb_ds/assoc_container.hpp> | ||
//#include <ext/pb_ds/tree_policy.hpp> | ||
using namespace std; | ||
//using namespace __gnu_pbds; | ||
|
||
typedef long long ll; | ||
|
||
#define pb push_back | ||
#define eb emplace_back | ||
#define mp(x,y) make_pair(x,y) | ||
#define mod 1000000007 | ||
|
||
double PI=3.1415926535897932384626; | ||
|
||
//template<typename T> T power(T x,T y,ll m=mod){T ans=1;while(y>0){if(y&1LL) ans=(ans*x)%m;y>>=1LL;x=(x*x)%m;}return ans%m;} | ||
|
||
//typedef tree<ll,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update> ost; | ||
|
||
//mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); | ||
//#define rnd(x, y) uniform_int_distribution<ll>(x, y)(rng) | ||
|
||
//struct custom_hash { | ||
// static uint64_t splitmix64(uint64_t x) { | ||
// // http://xorshift.di.unimi.it/splitmix64.c | ||
// x += 0x9e3779b97f4a7c15; | ||
// x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9; | ||
// x = (x ^ (x >> 27)) * 0x94d049bb133111eb; | ||
// return x ^ (x >> 31); | ||
// } | ||
// size_t operator()(uint64_t x) const { | ||
// static const uint64_t FIXED_RANDOM = | ||
// chrono::steady_clock::now().time_since_epoch().count(); | ||
// return splitmix64(x + FIXED_RANDOM); | ||
// } | ||
//}; | ||
|
||
#define fi first | ||
#define se second | ||
|
||
int main() | ||
{ | ||
ios_base::sync_with_stdio(false); | ||
cin.tie(NULL); | ||
ll t; | ||
cin>>t; | ||
while(t--) | ||
{ | ||
ll n,k; | ||
cin>>n>>k; | ||
vector<ll>arr(n); | ||
vector<ll>pre(n,0); | ||
for(ll i=0;i<n;i++) | ||
{ | ||
cin>>arr[i]; | ||
} | ||
for(ll i=1;i<(n-1);i++) | ||
{ | ||
if( (arr[i]>arr[i-1]) && (arr[i]>arr[i+1]) ) | ||
pre[i]=1; | ||
} | ||
for(ll i=1;i<n;i++) | ||
{ | ||
pre[i]+=pre[i-1]; | ||
} | ||
ll val=LLONG_MIN; | ||
ll pos=-1; | ||
for(ll i=0;i<n;i++) | ||
{ | ||
ll j=i+k-1; | ||
if(j>=n) | ||
break; | ||
ll hehe=pre[j-1]-pre[i]; | ||
//cout<<i+1<<" "<<j+1<<" "<<hehe<<endl; | ||
if(hehe>val) | ||
{ | ||
val=hehe; | ||
pos=i; | ||
} | ||
} | ||
cout<<val+1<<" "; | ||
cout<<(pos+1)<<endl; | ||
} | ||
return 0; | ||
} | ||
|
||
|
||
//252908XL | ||
|
||
/* | ||
comments:- | ||
*/ | ||
n |
Oops, something went wrong.