๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
const int INF = 99;
const int MAXN = 20;
int dist[MAXN][MAXN];
int next_node[MAXN][MAXN];
int path_count[MAXN][MAXN][MAXN];
void solve(int n) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i != j && dist[i][j] != INF) {
for (int k = 0; k < n; k++) {
if (dist[i][k] + dist[k][j] == dist[i][j]) {
path_count[i][j][k]++;
}
}
}
}
}
vector<int> v;
for (int k = 0; k < n; k++) {
int count = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i != j && i != k && j != k) {
count += path_count[i][j][k];
}
}
}
if (count > 0) {
v.push_back(k);
}
}
sort(v.begin(), v.end());
for (int node : v) {
cout << node << endl;
}
}
int main() {
int n;
cin >> n >> n;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> dist[i][j];
if (dist[i][j] == INF) {
next_node[i][j] = -1;
} else {
next_node[i][j] = j;
}
}
}
for (int k = 0; k < n; k++) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (dist[i][k] + dist[k][j] < dist[i][j]) {
dist[i][j] = dist[i][k] + dist[k][j];
next_node[i][j] = next_node[i][k];
}
}
}
}
solve(n);
return 0;
}
#include <vector>
#include <algorithm>
using namespace std;
const int INF = 99;
const int MAXN = 20;
int dist[MAXN][MAXN];
int next_node[MAXN][MAXN];
int path_count[MAXN][MAXN][MAXN];
void solve(int n) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i != j && dist[i][j] != INF) {
for (int k = 0; k < n; k++) {
if (dist[i][k] + dist[k][j] == dist[i][j]) {
path_count[i][j][k]++;
}
}
}
}
}
vector<int> v;
for (int k = 0; k < n; k++) {
int count = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i != j && i != k && j != k) {
count += path_count[i][j][k];
}
}
}
if (count > 0) {
v.push_back(k);
}
}
sort(v.begin(), v.end());
for (int node : v) {
cout << node << endl;
}
}
int main() {
int n;
cin >> n >> n;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> dist[i][j];
if (dist[i][j] == INF) {
next_node[i][j] = -1;
} else {
next_node[i][j] = j;
}
}
}
for (int k = 0; k < n; k++) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (dist[i][k] + dist[k][j] < dist[i][j]) {
dist[i][j] = dist[i][k] + dist[k][j];
next_node[i][j] = next_node[i][k];
}
}
}
}
solve(n);
return 0;
}
int solve(int n, vector<int>& arr) {
while (arr.size() > 1) {
int len = INT_MAX;
int idx = -1;
for (int i = 0; i < arr.size() - 1; ++i) {
int d = arr[i + 1];
if (d == 0 || arr[i] == 0) {
continue;
}
int r = min(arr[i] % d, d % arr[i]);
if (r < len) {
len = r;
idx = i;
}
}
if (idx == -1) {
break;
}
int d = arr[idx + 1];
if (d != 0) {
arr[idx] = min(arr[idx] % d, d % arr[idx]);
}
arr.erase(arr.begin() + idx + 1);
}
return arr.size();
}
Women Day Mathematics Challenge โ
while (arr.size() > 1) {
int len = INT_MAX;
int idx = -1;
for (int i = 0; i < arr.size() - 1; ++i) {
int d = arr[i + 1];
if (d == 0 || arr[i] == 0) {
continue;
}
int r = min(arr[i] % d, d % arr[i]);
if (r < len) {
len = r;
idx = i;
}
}
if (idx == -1) {
break;
}
int d = arr[idx + 1];
if (d != 0) {
arr[idx] = min(arr[idx] % d, d % arr[idx]);
}
arr.erase(arr.begin() + idx + 1);
}
return arr.size();
}
Women Day Mathematics Challenge โ
#include<bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> a(n);
for(int i=0; i<n; i++) {
cin >> a[i];
}
sort(a.begin(), a.end());
int ans = 0, count = 1;
for(int i=1; i<n; i++) {
if(a[i] > a[i-1]) {
ans += count;
count = 1;
} else {
count++;
}
}
cout << ans << endl;
return 0;
}
using namespace std;
int main() {
int n;
cin >> n;
vector<int> a(n);
for(int i=0; i<n; i++) {
cin >> a[i];
}
sort(a.begin(), a.end());
int ans = 0, count = 1;
for(int i=1; i<n; i++) {
if(a[i] > a[i-1]) {
ans += count;
count = 1;
} else {
count++;
}
}
cout << ans << endl;
return 0;
}
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Job Role : Service Desk Skills
Qualification : B.E/B.Tech
Batch : Any Batch
https://www.linkedin.com/jobs/view/3797415823/
Qualification : B.E/B.Tech
Batch : Any Batch
https://www.linkedin.com/jobs/view/3797415823/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Sensata is Hiring !!
Role: Intern
Expected Stipend: 20k-40k per month
Apply here: https://sensata.wd1.myworkdayjobs.com/en-US/Sensata-Careers/job/Pune-India/Intern_IRC91727
Role: Intern
Expected Stipend: 20k-40k per month
Apply here: https://sensata.wd1.myworkdayjobs.com/en-US/Sensata-Careers/job/Pune-India/Intern_IRC91727
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Speer is Hiring !!
Roles:
- Frontend Developer
- Backend Developer
- React Native Developer
- App Developer (Android/iOS)
Base Salary: 19.4 - 41 LPA
Location: Remote ๐
Apply here- https://miro.com/app/board/uXjVMJK4wq0=/
Roles:
- Frontend Developer
- Backend Developer
- React Native Developer
- App Developer (Android/iOS)
Base Salary: 19.4 - 41 LPA
Location: Remote ๐
Apply here- https://miro.com/app/board/uXjVMJK4wq0=/
miro.com
Miro | The Visual Workspace for Innovation
Miro is a visual workspace for innovation where teams manage projects, design products, and build the future together. Join 60M+ users from around the world.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Zscaler is Hiring !!
Role: Associate Data Engineer
Experience: 0-3 Years
Location - Bangalore
Apply here- https://boards.greenhouse.io/zscaler/jobs/4190994007?gh_src=c9f3d7237&trid=2d92f286-613b-4daf-9dfa-6340ffbecf73&source=LinkedIn
Role: Associate Data Engineer
Experience: 0-3 Years
Location - Bangalore
Apply here- https://boards.greenhouse.io/zscaler/jobs/4190994007?gh_src=c9f3d7237&trid=2d92f286-613b-4daf-9dfa-6340ffbecf73&source=LinkedIn
job-boards.greenhouse.io
Zscaler
<p>Zscaler (NASDAQ: ZS) accelerates digital transformation so that customers can be more agile, efficient, resilient, and secure. The Zscaler Zero Trust Exchange is the companyโs cloud-native platform that protects thousands of customers from cyberattacksโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
UPDATE:
Read the Job Description and Apply only if eligible.
Since it's a remote startup, It's okay if you have less work experience but amazing portfolio.
https://forms.gle/7WyVfmNptZoY8Vhv9
Read the Job Description and Apply only if eligible.
Since it's a remote startup, It's okay if you have less work experience but amazing portfolio.
https://forms.gle/7WyVfmNptZoY8Vhv9
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Mercedes-Benz
Role: Intern
Batch eligible: 2024 and 2025 passouts
Apply: https://jobs.mercedes-benz.com/en/intern-2023-51169-MER0002CBX
Role: Intern
Batch eligible: 2024 and 2025 passouts
Apply: https://jobs.mercedes-benz.com/en/intern-2023-51169-MER0002CBX
Mercedes-Benz Group
Die gewรคhlte Stellenanzeige wurde nicht gefunden. | Mercedes-Benz Group
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Shadowfax
Role: Data Analytics Intern
Batch eligible: 2022, 2023 and 2024 passouts
Apply: https://docs.google.com/forms/d/e/1FAIpQLSem-oto0r0I4mATq2s1mpjsvSaqOD0IS5VZrM2nVVFe8V4COA/viewform
Role: Data Analytics Intern
Batch eligible: 2022, 2023 and 2024 passouts
Apply: https://docs.google.com/forms/d/e/1FAIpQLSem-oto0r0I4mATq2s1mpjsvSaqOD0IS5VZrM2nVVFe8V4COA/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Guidewire
Role: Software Engineer
Batch eligible: 2024 and 2025 passouts
Apply: https://jobs.lever.co/guidewire/e3d3df57-f9fb-4e5d-8aea-3692f5a72028
Role: Software Engineer
Batch eligible: 2024 and 2025 passouts
Apply: https://jobs.lever.co/guidewire/e3d3df57-f9fb-4e5d-8aea-3692f5a72028
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Bastian is Hiring !!
Role: Software Developer I
Expected CTC: 8-15 LPA
Apply here: https://recruiting.adp.com/srccar/public/RTI.home?c=1138141&d=BASCareerSite&rb=INDEED&r=5000830051506#/
Role: Software Developer I
Expected CTC: 8-15 LPA
Apply here: https://recruiting.adp.com/srccar/public/RTI.home?c=1138141&d=BASCareerSite&rb=INDEED&r=5000830051506#/
Did you get the test link for Google Apprenticeships?
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Finoability is looking forward to collaborate with the Placement Cells of Under-graduate & Post-graduate colleges across the country to recruit for the Summer Internship Programme 2024 in the field of Finance & Marketing.
Interested colleges are requested to kindly get in touch with us at hr@finoability.com
Interested colleges are requested to kindly get in touch with us at hr@finoability.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Meesho
Role: SDE Intern
Batch eligible: 2023 and 2024 passouts
Apply: https://www.meesho.io/jobs/open-recruitment
Role: SDE Intern
Batch eligible: 2023 and 2024 passouts
Apply: https://www.meesho.io/jobs/open-recruitment
www.meesho.io
Meesho Careers: Software Development Engineer - Intern
Your chance to reimagine commerce for bharat
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐จJOB OPENING UPDATE๐จ
Company โ Tree Top Staffing LLC
Role โ Data Analyst
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3800053561
Company โ MachineHack Generative AI
Role โ Generative AI Engineer
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3801085938
Company โ Hexaware Technologies
Role โ Analytics Data science and IOT Engineer
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3800858321
Company โ Altrata India Private Ltd
Role โ Data Engineer
Exp. โ 0-2 yr
Apply Here โ https://www.naukri.com/job-listings-data-engineer-altrata-india-private-ltd-chennai-tamil-nadu-0-to-2-years-070124001912?src=sortby&sid=1704692157253739_1&xp=5&px=1&nignbevent_src=jobsearchDeskGNB
Company โ SAZ India
Role โ Data Analytics Intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3800760641
Company โ Radio City
Role โ Data Analytics intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/data-analytics-internship-in-mumbai-at-radio-city1704438545
Company โ AIqwip
Role โ Data Science intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/data-science-internship-in-bangalore-at-aiqwip1704547841
Company โ Across The Globe (ATG)
Role โ Deep Learning
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/deep-learning-work-from-home-job-internship-at-across-the-globe-atg1703825932
Company โ Blackcoffer
Role โ Data Science
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/data-science-work-from-home-job-internship-at-blackcoffer1704450041
ALL THE BEST๐
Company โ Tree Top Staffing LLC
Role โ Data Analyst
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3800053561
Company โ MachineHack Generative AI
Role โ Generative AI Engineer
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3801085938
Company โ Hexaware Technologies
Role โ Analytics Data science and IOT Engineer
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3800858321
Company โ Altrata India Private Ltd
Role โ Data Engineer
Exp. โ 0-2 yr
Apply Here โ https://www.naukri.com/job-listings-data-engineer-altrata-india-private-ltd-chennai-tamil-nadu-0-to-2-years-070124001912?src=sortby&sid=1704692157253739_1&xp=5&px=1&nignbevent_src=jobsearchDeskGNB
Company โ SAZ India
Role โ Data Analytics Intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3800760641
Company โ Radio City
Role โ Data Analytics intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/data-analytics-internship-in-mumbai-at-radio-city1704438545
Company โ AIqwip
Role โ Data Science intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/data-science-internship-in-bangalore-at-aiqwip1704547841
Company โ Across The Globe (ATG)
Role โ Deep Learning
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/deep-learning-work-from-home-job-internship-at-across-the-globe-atg1703825932
Company โ Blackcoffer
Role โ Data Science
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/data-science-work-from-home-job-internship-at-blackcoffer1704450041
ALL THE BEST๐
Linkedin
Tree Top Staffing LLC hiring Data Analyst in APJ | LinkedIn
Posted 2:09:29 AM. We are looking for a Data Analyst who will play an extremely important role as your insights andโฆSee this and similar jobs on LinkedIn.