STEEM
Tradeable tokens that may be transferred anywhere at anytime.
Steem can be converted to STEEM POWER in a process called powering up.
Steem can be converted to STEEM POWER in a process called powering up.
10.461 STEEM
STEEM POWER
Influence tokens which give you more control over post payouts and allow you to earn on curation rewards.
STEEM POWER increases at an APR of approximately 2.65%, subject to blockchain variance. See FAQ for details.
Influence can also be delegated to other users via delegating your Steem Power. Returning your Steem Power takes exactly 5 days in which neither you nor the delegatee can use it. 8,295.759 STEEM
STEEM DOLLARS
Tradeable tokens that may be transferred anywhere at anytime.
$0.000
SAVINGS
Balances subject to 3 day withdraw waiting period.
0.000 STEEM
$0.000
$0.000
Estimated Account Value
Total account asset valuation in USD.
$2,164.33
The next power down is scheduled to happen in 4 days (~7,763.378 STEEM).
HISTORY
Beware of spam and phishing links in transfer memos. Do not open links from users you do not trust. Do not provide your private keys to any third party websites. Transactions will not show until they are confirmed on the blockchain, which may take a few minutes.
12 hours ago | Transfer 0.001 STEEM to bdhivesteem | binary ocurance #include <iostream> using namespace std; int binarySearchFirst(int arr[], int n, int x) { int left = 0, right = n - 1; int result = -1; while (left <= right) { int mid = left + (right - left) / 2; if (arr[mid] == x) { result = mid; right = mid - 1; // Move to the left half } else if (arr[mid] < x) { left = mid + 1; } else { right = mid - 1; } } return result; } int binarySearchLast(int arr[], int n, int x) { int left = 0, right = n - 1; int result = -1; while (left <= right) { int mid = left + (right - left) / 2; if (arr[mid] == x) { result = mid; left = mid + 1; // Move to the right half } else if (arr[mid] < x) { left = mid + 1; } else { right = mid - 1; } } return result; } int countOccurrences(int arr[], int n, int x) { int first = binarySearchFirst(arr, n, x); if (first == -1) { return 0; // x is not present in the array } int last = binarySearchLast(arr, n, x); return last - first + 1; } int main() { int n; cout << "Enter the number of elements: "; cin >> n; int arr[n]; cout << "Enter the elements in sorted order: "; for (int i = 0; i < n; i++) { cin >> arr[i]; } int x; cout << "Enter the element to count occurrences of: "; cin >> x; int count = countOccurrences(arr, n, x); cout << "Number of occurrences of " << x << " is: " << count << endl; return 0; } |
12 hours ago | Transfer 0.001 STEEM to bdhivesteem | fractional #include <iostream> #include <algorithm> using namespace std; // A structure to represent an item with weight and value struct Item { int value, weight; // Constructor Item(int value, int weight) : value(value), weight(weight) {} }; // Comparison function to sort items by value-to-weight ratio bool compare(Item a, Item b) { double r1 = (double)a.value / a.weight; double r2 = (double)b.value / b.weight; return r1 > r2; } // Function to calculate the maximum value we can get double fractionalKnapsack(int W, Item arr[], int n) { // Sort items by value-to-weight ratio sort(arr, arr + n, compare); double totalValue = 0.0; // Total value in knapsack for (int i = 0; i < n; i++) { // If adding the whole item doesn't exceed capacity, add it if (arr[i].weight <= W) { W -= arr[i].weight; totalValue += arr[i].value; } else { // Add the fractional part of the item totalValue += arr[i].value * ((double)W / arr[i].weight); break; } } return totalValue; } int main() { int n, W; cout << "Enter the number of items: "; cin >> n; cout << "Enter the capacity of the knapsack: "; cin >> W; Item arr[n]; cout << "Enter the value and weight of each item:" << endl; for (int i = 0; i < n; i++) { int value, weight; cin >> value >> weight; arr[i] = Item(value, weight); } double maxValue = fractionalKnapsack(W, arr, n); cout << "Maximum value in knapsack = " << maxValue << endl; return 0; } |
12 hours ago | Transfer 0.001 STEEM to bdhivesteem | activity selection #include <iostream> #include <algorithm> using namespace std; // A structure to represent an activity struct Activity { int start; int finish; }; // A utility function to sort activities according to their finish time bool activityCompare(Activity s1, Activity s2) { return (s1.finish < s2.finish); } // Function to perform the Activity Selection algorithm void activitySelection(Activity activities[], int n) { // Sort activities based on their finish time sort(activities, activities + n, activityCompare); cout << "Selected activities are: " << endl; // The first activity always gets selected int i = 0; cout << "(" << activities[i].start << ", " << activities[i].finish << ")" << endl; // Consider the rest of the activities for (int j = 1; j < n; j++) { // If this activity has a start time greater than or equal to the finish time of the previously selected activity, select it if (activities[j].start >= activities[i].finish) { cout << "(" << activities[j].start << ", " << activities[j].finish << ")" << endl; i = j; } } } int main() { int n; cout << "Enter the number of activities: "; cin >> n; Activity activities[n]; cout << "Enter the start and finish times of the activities: " << endl; for (int i = 0; i < n; i++) { cin >> activities[i].start >> activities[i].finish; } activitySelection(activities, n); return 0; } |
12 hours ago | Transfer 0.001 STEEM to bdhivesteem | fibo seris #include<iostream> using namespace std; int Fib(int n) { //Base case if(n == 0) return 0; else if (n == 1) return 1; else { return Fib(n-1) + Fib(n-2); } } int main() { int n; cin >> n; for(int i = 0 ; i <= n ; i++) { cout << "Fib of " << i <<" "<< Fib(i) << endl; } return 0; } |
12 hours ago | Transfer 0.001 STEEM to bdhivesteem | linear search #include <iostream> using namespace std; int linearSearch(int arr[], int n, int x) { for (int i = 0; i < n; i++) { if (arr[i] == x) { return i; // Return the index of the found element } } return -1; // Return -1 if the element is not found } int main() { int n; cout << "Enter the number of elements: "; cin >> n; int arr[n]; cout << "Enter the elements: "; for (int i = 0; i < n; i++) { cin >> arr[i]; } int x; cout << "Enter the element to search for: "; cin >> x; int result = linearSearch(arr, n, x); if (result != -1) { cout << "Element found at index " << result << endl; } else { cout << "Element not found in the array" << endl; } return 0; } |
12 hours ago | Transfer 0.001 STEEM to bdhivesteem | binary search #include <iostream> using namespace std; int binary_search(int arr[],int left , int right, int x){ while(left<=right){ int mid=left+(right-left)/2; if(arr[mid]==x){ return mid; } if(arr[mid]<x){ left=mid+1; } else{ right=mid-1; } } return -1; } int main() { int n; cout << "Enter the number of elements: "; cin >> n; int arr[n]; cout << "Enter the elements in sorted order: "; for (int i = 0; i < n; i++) { cin >> arr[i]; } int x; cout << "Enter the element to search for: "; cin >> x; int result = binary_search(arr, 0, n - 1, x); if (result != -1) cout << "Element found at index " << result << endl; else cout << "Element not found in the array" << endl; return 0; } |
12 hours ago | Transfer 0.001 STEEM to bdhivesteem | bullble sort #include <iostream> using namespace std; void bubbleSort(int arr[], int n) { for (int i = 0; i < n-1; i++) { for (int j = 0; j < n-i-1; j++) { if (arr[j] > arr[j+1]) { // Swap arr[j] and arr[j+1] int temp = arr[j]; arr[j] = arr[j+1]; arr[j+1] = temp; } } } } void printArray(int arr[], int size) { for (int i = 0; i < size; i++) { cout << arr[i] << " "; } cout << endl; } int main() { int n; cout << "Enter the number of elements: "; cin >> n; int arr[n]; cout << "Enter the elements: "; for (int i = 0; i < n; i++) { cin >> arr[i]; } cout << "Unsorted array: "; printArray(arr, n); bubbleSort(arr, n); cout << "Sorted array: "; printArray(arr, n); return 0; } |
12 hours ago | Received 10.468 STEEM from binance-hot2 | |
3 days ago | Transfer 7763.544 STEEM to bdhivesteem | 100026253 |
6 days ago | Claim rewards: 1.599 STEEM and 2.339 STEEM POWER | |
6 days ago | Claim rewards: 0.572 STEEM and 0.865 STEEM POWER | |
6 days ago | Claim rewards: 0.299 STEEM POWER | |
6 days ago | Claim rewards: 0.179 STEEM POWER | |
7 days ago | Claim rewards: 0.134 STEEM POWER | |
8 days ago | Claim rewards: 0.248 STEEM POWER | |
9 days ago | Claim rewards: 0.236 STEEM POWER | |
9 days ago | Claim rewards: 1.566 STEEM POWER | |
9 days ago | Claim rewards: 1.205 STEEM POWER | |
10 days ago | Claim rewards: 0.258 STEEM POWER | |
10 days ago | Transfer 7757.452 STEEM to bdhivesteem | 100026253 |
11 days ago | Claim rewards: 0.230 STEEM POWER | |
12 days ago | Claim rewards: 0.360 STEEM POWER | |
13 days ago | Claim rewards: 0.350 STEEM POWER | |
14 days ago | Claim rewards: 0.425 STEEM POWER | |
14 days ago | Claim rewards: 1.594 STEEM POWER | |
14 days ago | Claim rewards: 0.317 STEEM POWER | |
15 days ago | Claim rewards: 0.334 STEEM POWER | |
16 days ago | Claim rewards: 1.532 STEEM POWER | |
16 days ago | Claim rewards: 0.418 STEEM POWER | |
16 days ago | Transfer 7763.610 STEEM to bdhivesteem | 100026253 |
17 days ago | Claim rewards: 0.398 STEEM POWER | |
18 days ago | Claim rewards: 0.360 STEEM POWER | |
20 days ago | Claim rewards: 0.637 STEEM POWER | |
20 days ago | Claim rewards: 0.222 STEEM POWER | |
21 days ago | Claim rewards: 0.182 STEEM POWER | |
22 days ago | Claim rewards: 0.340 STEEM POWER | |
23 days ago | Claim rewards: 0.177 STEEM POWER | |
24 days ago | Claim rewards: 10.077 STEEM and 10.098 STEEM POWER | |
24 days ago | Transfer 67.434 STEEM to bdhivesteem | 100026253 |
24 days ago | Start power down of 31,053.510 STEEM | |
25 days ago | Claim rewards: 9.777 STEEM and 9.797 STEEM POWER | |
26 days ago | Claim rewards: 9.673 STEEM and 9.694 STEEM POWER | |
27 days ago | Claim rewards: 9.406 STEEM and 9.427 STEEM POWER | |
28 days ago | Claim rewards: 9.419 STEEM and 9.440 STEEM POWER | |
29 days ago | Claim rewards: 9.697 STEEM and 9.720 STEEM POWER | |
last month | Claim rewards: 9.974 STEEM and 9.998 STEEM POWER | |
last month | Claim rewards: 9.488 STEEM and 9.513 STEEM POWER | |
last month | Transfer 64.071 STEEM to bdhivesteem | 100026253 |
last month | Claim rewards: 9.160 STEEM and 9.184 STEEM POWER | |
last month | Claim rewards: 9.402 STEEM and 9.428 STEEM POWER | |
last month | Claim rewards: 9.161 STEEM and 9.187 STEEM POWER | |
last month | Claim rewards: 9.604 STEEM and 9.632 STEEM POWER | |
last month | Claim rewards: 8.961 STEEM and 8.988 STEEM POWER | |
last month | Claim rewards: 8.932 STEEM and 8.959 STEEM POWER | |
last month | Claim rewards: 8.851 STEEM and 8.878 STEEM POWER | |
last month | Transfer 118.421 STEEM to bdhivesteem | 100026253 |
last month | Claim rewards: 8.706 STEEM and 8.733 STEEM POWER | |
last month | Claim rewards: 9.185 STEEM and 9.214 STEEM POWER |